This commit is contained in:
Alexey Kulish 2016-11-07 18:44:02 +03:00
parent 9bbe2ed141
commit a06b98bc4b

View file

@ -463,8 +463,12 @@ public class DashChooseAppDirFragment {
Toast.makeText(ctx, R.string.shared_string_io_error, Toast.LENGTH_LONG).show(); Toast.makeText(ctx, R.string.shared_string_io_error, Toast.LENGTH_LONG).show();
} }
} }
if(progress.getDialog().isShowing()) { try {
progress.getDialog().dismiss(); if (progress.getDialog().isShowing()) {
progress.getDialog().dismiss();
}
} catch (Exception e) {
//ignored
} }
} }
@ -541,8 +545,12 @@ public class DashChooseAppDirFragment {
@Override @Override
protected void onPostExecute(Boolean result) { protected void onPostExecute(Boolean result) {
if (progress.getDialog().isShowing()) { try {
progress.getDialog().dismiss(); if (progress.getDialog().isShowing()) {
progress.getDialog().dismiss();
}
} catch (Exception e) {
//ignored
} }
} }