Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 27067657 authored by Sunny Shao's avatar Sunny Shao Committed by android-build-merger
Browse files

Merge "Fixed the IllegalStateException on removing account" into qt-dev

am: 5a69fac6

Change-Id: I6d87742bd0925237cb73171561118e4bdd363b8a
parents e4e1f087 5a69fac6
Loading
Loading
Loading
Loading
+5 −1
Original line number Diff line number Diff line
@@ -191,7 +191,11 @@ public class RemoveAccountPreferenceController extends AbstractPreferenceControl
            }
            final RemoveAccountFailureDialog dialog = new RemoveAccountFailureDialog();
            dialog.setTargetFragment(parent, 0);
            try {
                dialog.show(parent.getFragmentManager(), FAILED_REMOVAL_DIALOG);
            } catch (IllegalStateException e) {
                Log.w(TAG, "Can't show RemoveAccountFailureDialog. " +  e.getMessage());
            }
        }

        @Override