Prevent crash

pull/208/head
M66B 3 years ago
parent 3e3a2b3885
commit dae4a30c47

@ -606,8 +606,8 @@ public class FragmentGmail extends FragmentBase {
protected void onExecuted(Bundle args, Void data) {
boolean updated = args.getBoolean("updated");
if (updated) {
finish();
ToastEx.makeText(getContext(), R.string.title_setup_oauth_updated, Toast.LENGTH_LONG).show();
finish();
} else {
FragmentDialogAccount fragment = new FragmentDialogAccount();
fragment.setArguments(args);
@ -620,6 +620,9 @@ public class FragmentGmail extends FragmentBase {
protected void onException(Bundle args, Throwable ex) {
Log.e(ex);
if (!getLifecycle().getCurrentState().isAtLeast(Lifecycle.State.STARTED))
return;
if (ex instanceof IllegalArgumentException)
tvError.setText(ex.getMessage());
else

Loading…
Cancel
Save