Fix minor permission error with the PGP backups
This commit is contained in:
parent
3e4272c4f4
commit
b997c30225
1 changed files with 12 additions and 0 deletions
|
@ -175,6 +175,18 @@ public class BackupActivity extends AppCompatActivity {
|
||||||
} else {
|
} else {
|
||||||
Toast.makeText(this, R.string.backup_toast_storage_permissions, Toast.LENGTH_LONG).show();
|
Toast.makeText(this, R.string.backup_toast_storage_permissions, Toast.LENGTH_LONG).show();
|
||||||
}
|
}
|
||||||
|
} else if (requestCode == PERMISSIONS_REQUEST_READ_IMPORT_PGP) {
|
||||||
|
if (grantResults.length > 0 && grantResults[0] == PackageManager.PERMISSION_GRANTED) {
|
||||||
|
importEncryptedWithSelector();
|
||||||
|
} else {
|
||||||
|
Toast.makeText(this, R.string.backup_toast_storage_permissions, Toast.LENGTH_LONG).show();
|
||||||
|
}
|
||||||
|
} else if (requestCode == PERMISSIONS_REQUEST_WRITE_EXPORT_PGP) {
|
||||||
|
if (grantResults.length > 0 && grantResults[0] == PackageManager.PERMISSION_GRANTED) {
|
||||||
|
exportEncryptedWithSelector();
|
||||||
|
} else {
|
||||||
|
Toast.makeText(this, R.string.backup_toast_storage_permissions, Toast.LENGTH_LONG).show();
|
||||||
|
}
|
||||||
} else {
|
} else {
|
||||||
super.onRequestPermissionsResult(requestCode, permissions, grantResults);
|
super.onRequestPermissionsResult(requestCode, permissions, grantResults);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue