tweaking the error at requesting All files access

This commit is contained in:
tibbi 2022-06-20 12:50:38 +02:00
parent e121a9b72b
commit ec0753a148
1 changed files with 1 additions and 2 deletions

View File

@ -145,13 +145,12 @@ fun BaseSimpleActivity.handleMediaManagementPrompt(callback: () -> Unit) {
intent.data = Uri.parse("package:$packageName")
startActivity(intent)
} catch (e: Exception) {
showErrorToast(e)
val intent = Intent()
intent.action = Settings.ACTION_MANAGE_ALL_FILES_ACCESS_PERMISSION
try {
startActivity(intent)
} catch (e: Exception) {
ConfirmationDialog(this, "", R.string.media_management_manual, R.string.ok, 0, false) {}
showErrorToast(e)
}
}
} else {