mirror of
https://github.com/FossifyOrg/Gallery.git
synced 2024-11-26 14:37:59 +01:00
add a backup dialog for redirecting to media management settings
This commit is contained in:
parent
e2a04249fd
commit
dc53582a51
1 changed files with 5 additions and 1 deletions
|
@ -148,7 +148,11 @@ fun BaseSimpleActivity.handleMediaManagementPrompt(callback: () -> Unit) {
|
|||
showErrorToast(e)
|
||||
val intent = Intent()
|
||||
intent.action = Settings.ACTION_MANAGE_ALL_FILES_ACCESS_PERMISSION
|
||||
startActivity(intent)
|
||||
try {
|
||||
startActivity(intent)
|
||||
} catch (e: Exception) {
|
||||
ConfirmationDialog(this, "", R.string.media_management_manual, R.string.ok, 0, false) {}
|
||||
}
|
||||
}
|
||||
} else {
|
||||
finish()
|
||||
|
|
Loading…
Reference in a new issue