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

Commit 72f2ccce authored by Pengquan Meng's avatar Pengquan Meng
Browse files

Fixed phone crash issue on no-sim device

Bug: 71803372
Test: manual
Change-Id: I6a374f619672aa32d0b4f6362b3937c05e2fa144
parent c10a3e2f
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -123,7 +123,7 @@ public class CarrierServiceBindHelper {
        if (!SubscriptionManager.isValidPhoneId(phoneId)) {
            return;
        }
        if (TextUtils.isEmpty(simState)) return;
        if (TextUtils.isEmpty(simState) || phoneId >= mLastSimState.length) return;
        if (simState.equals(mLastSimState[phoneId])) {
            // ignore consecutive duplicated events
            return;