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

Commit 2a3aa2a3 authored by Wink Saville's avatar Wink Saville
Browse files

Work around for operator not being correct.

This is a STOPSHIP work-around until we figure out why
getSIMOperatorNumeric is not returning valid values.
It has returned NULL, "00000", "310004", "311480" and
once a value "83????", I don't remember the exact value.

Change-Id: I4f1d16c853047b72dd987572d3d67dcc2cd697a2
parent 79da5c2d
Loading
Loading
Loading
Loading
+5 −0
Original line number Diff line number Diff line
@@ -478,6 +478,11 @@ public final class SIMRecords extends IccRecords {

        // Length = length of MCC + length of MNC
        // length of mcc = 3 (TS 23.003 Section 2.2)
        if (SystemProperties.getInt(com.android.internal.telephony.TelephonyProperties
                .PROPERTY_NETWORK_LTE_ON_CDMA, 0) == 1) {
            Log.e(LOG_TAG, "getSIMOperatorNumeric: STOPSHIP bad numeric operators in lte");
            return SystemProperties.get("ro.cdma.home.operator.numeric", "310004");
        }
        return imsi.substring(0, 3 + mncLength);
    }