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

Commit dfb29443 authored by Hall Liu's avatar Hall Liu Committed by Gerrit Code Review
Browse files

Merge "IMS: Adding support for TIR/TIP permanent provisioning"

parents 6ca66f59 1fb468b7
Loading
Loading
Loading
Loading
+5 −1
Original line number Diff line number Diff line
@@ -1480,7 +1480,11 @@ public final class ImsPhoneMmiCode extends Handler implements MmiCode {
                if (ssInfo != null) {
                    Rlog.d(LOG_TAG,
                            "onSuppSvcQueryComplete: ImsSsInfo mStatus = " + ssInfo.getStatus());
                    if (ssInfo.getStatus() == ImsSsInfo.DISABLED) {
                    if (ssInfo.getProvisionStatus() == ImsSsInfo.SERVICE_NOT_PROVISIONED) {
                        sb.append(mContext.getText(
                                com.android.internal.R.string.serviceNotProvisioned));
                        mState = State.COMPLETE;
                    } else if (ssInfo.getStatus() == ImsSsInfo.DISABLED) {
                        sb.append(mContext.getText(com.android.internal.R.string.serviceDisabled));
                        mState = State.COMPLETE;
                    } else if (ssInfo.getStatus() == ImsSsInfo.ENABLED) {