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

Commit 37f81c47 authored by Linux Build Service Account's avatar Linux Build Service Account Committed by Gerrit - the friendly Code Review server
Browse files

Merge "ChooseTypeAndAccountActivity: Fix the Null pointer Exception of monkey test"

parents 9f772ad0 ed48bc84
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -310,7 +310,7 @@ public class ChooseTypeAndAccountActivity extends Activity
        if (resultCode == RESULT_CANCELED) {
            // if canceling out of addAccount and the original state caused us to skip this,
            // finish this activity
            if (mAccounts.isEmpty()) {
            if (null == mAccounts || mAccounts.isEmpty()) {
                setResult(Activity.RESULT_CANCELED);
                finish();
            }