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

Commit 7475f600 authored by Brad Ebinger's avatar Brad Ebinger Committed by Gerrit Code Review
Browse files

Merge "CSFB SS: Do not show result in case of CDMA"

parents f3efbf21 1749e6de
Loading
Loading
Loading
Loading
+11 −1
Original line number Diff line number Diff line
@@ -1365,6 +1365,9 @@ public final class ImsPhoneMmiCode extends Handler implements MmiCode {
            } else if (ar.exception instanceof ImsException) {
                sb.append(getImsErrorMessage(ar));
            }
        } else if ((int)ar.result == CommandsInterface.SS_STATUS_UNKNOWN) {
            mState = State.FAILED;
            sb = null;
        } else if (isActivate()) {
            mState = State.COMPLETE;
            if (mIsCallFwdReg) {
@@ -1508,6 +1511,11 @@ public final class ImsPhoneMmiCode extends Handler implements MmiCode {
            else {
                sb.append(getErrorMessage(ar));
            }
        } else if (ar.result instanceof CallForwardInfo[] &&
                   ((CallForwardInfo[]) ar.result)[0].status
                    == CommandsInterface.SS_STATUS_UNKNOWN) {
            sb = null;
            mState = State.FAILED;
        } else {
            CallForwardInfo infos[];

@@ -1760,7 +1768,9 @@ public final class ImsPhoneMmiCode extends Handler implements MmiCode {
            } else {
                sb.append(getErrorMessage(ar));
            }

        } else if ((ar.result instanceof int[]) &&
                   ((int[])ar.result)[0] == CommandsInterface.SS_STATUS_UNKNOWN) {
            sb = null;
        } else {
            int[] ints = (int[])ar.result;