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

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

Merge "Fix the issue when divides PLMN and RAT"

parents 985fe17e 6bba1ee5
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -71,11 +71,11 @@ public class OperatorInfo implements Parcelable {
        mOperatorAlphaLong = operatorAlphaLong;
        mOperatorAlphaShort = operatorAlphaShort;

        mOperatorNumeric = null;
        mOperatorNumeric = operatorNumeric;
        mRadioTech = "";
        /* operatorNumeric format: PLMN+RAT or PLMN */
        if (null != operatorNumeric) {
            String values[] = operatorNumeric.split("+");
            String values[] = operatorNumeric.split("\\+");
            mOperatorNumeric = values[0];
            if (values.length > 1)
                mRadioTech = values[1];