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

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

Merge "Mms: Cannot send mms with RUIM card"

parents 57fcf664 5ef7f4dc
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -218,11 +218,11 @@ public class CDMALTEPhone extends CDMAPhone {

    @Override
    public boolean updateCurrentCarrierInProvider() {
        if (mSimRecords != null) {
        if (mIccRecords.get() != null) {
            try {
                Uri uri = Uri.withAppendedPath(Telephony.Carriers.CONTENT_URI, "current");
                ContentValues map = new ContentValues();
                String operatorNumeric = mSimRecords.getOperatorNumeric();
                String operatorNumeric = mIccRecords.get().getOperatorNumeric();
                map.put(Telephony.Carriers.NUMERIC, operatorNumeric);
                if (DBG) log("updateCurrentCarrierInProvider from UICC: numeric=" +
                        operatorNumeric);