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

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

Merge "NPE when accessing Sim Cards option with no sims."

parents 9a6750d6 da0de0dd
Loading
Loading
Loading
Loading
+5 −2
Original line number Diff line number Diff line
@@ -527,8 +527,11 @@ public class SimSettings extends RestrictedSettingsFragment implements Indexable
        simPref.clearItems();

        //Get num of activated Subs
        if (mSubInfoList != null) {
            for (SubscriptionInfo subInfo : mSubInfoList) {
            if (subInfo != null && subInfo.getStatus() == SubscriptionManager.ACTIVE) mActCount++;
                if (subInfo != null && subInfo.getStatus()
                        == SubscriptionManager.ACTIVE) mActCount++;
            }
        }

        if (askFirst && mActCount > 1) {