1
0
Fork 0
mirror of https://github.com/M66B/FairEmail.git synced 2024-12-26 01:36:55 +00:00

Check SAF before export/import

This commit is contained in:
M66B 2019-12-02 15:10:19 +01:00
parent 6aac7cfa2e
commit c24ebe7381

View file

@ -373,31 +373,33 @@ public class ActivitySetup extends ActivityBase implements FragmentManager.OnBac
}
private void onMenuExport() {
if (ActivityBilling.isPro(this)) {
try {
askPassword(true);
} catch (Throwable ex) {
Helper.unexpectedError(getSupportFragmentManager(), ex);
}
} else
if (ActivityBilling.isPro(this))
askPassword(true);
else
startActivity(new Intent(this, ActivityBilling.class));
}
private void onMenuImport() {
try {
askPassword(false);
} catch (Throwable ex) {
Helper.unexpectedError(getSupportFragmentManager(), ex);
}
askPassword(false);
}
private void askPassword(final boolean export) {
Bundle args = new Bundle();
args.putBoolean("export", export);
Intent intent = (export ? getIntentExport() : getIntentImport());
if (intent.resolveActivity(getPackageManager()) == null) {
ToastEx.makeText(this, R.string.title_no_saf, Toast.LENGTH_LONG).show();
return;
}
FragmentDialogPassword fragment = new FragmentDialogPassword();
fragment.setArguments(args);
fragment.show(getSupportFragmentManager(), "password");
try {
Bundle args = new Bundle();
args.putBoolean("export", export);
FragmentDialogPassword fragment = new FragmentDialogPassword();
fragment.setArguments(args);
fragment.show(getSupportFragmentManager(), "password");
} catch (Throwable ex) {
Helper.unexpectedError(getSupportFragmentManager(), ex);
}
}
private void onMenuOrder(int title, Class clazz) {