add a backup dialog for redirecting to media management settings

This commit is contained in:
tibbi 2022-06-17 09:40:58 +02:00
parent e2a04249fd
commit dc53582a51

View file

@ -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()