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

Commit c6347175 authored by Prem Kumar's avatar Prem Kumar Committed by android-build-merger
Browse files

am 35b3257e: am 1e1251cc: Merge "Fixed a SIM Cards crash." into lmp-mr1-dev

automerge: 5c8dff3e

* commit '5c8dff3e':
  Fixed a SIM Cards crash.
parents d876825c 5c8dff3e
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -152,7 +152,7 @@ public class SimDialogActivity extends Activity {
        final SubscriptionManager subscriptionManager = SubscriptionManager.from(context);
        final List<SubscriptionInfo> subInfoList =
            subscriptionManager.getActiveSubscriptionInfoList();
        final int selectableSubInfoLength = subInfoList.size();
        final int selectableSubInfoLength = subInfoList == null ? 0 : subInfoList.size();

        final DialogInterface.OnClickListener selectionListener =
                new DialogInterface.OnClickListener() {