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

Commit 53971140 authored by Etan Cohen's avatar Etan Cohen Committed by Android Git Automerger
Browse files

am 1f059ef7: Merge "UE doesn\'t make 1x call if IMS not registered." into mnc-dev

* commit '1f059ef7':
  UE doesn't make 1x call if IMS not registered.
parents af88e4d7 1f059ef7
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -472,8 +472,8 @@ public class CDMAPhone extends PhoneBase {
            }
        }

        if ((mSST != null) && (mSST.mSS.getState() == ServiceState.STATE_OUT_OF_SERVICE)
                && !isEmergency) {
        if (mSST != null && mSST.mSS.getState() == ServiceState.STATE_OUT_OF_SERVICE
                && mSST.mSS.getDataRegState() != ServiceState.STATE_IN_SERVICE && !isEmergency) {
            throw new CallStateException("cannot dial in current state");
        }
        if (DBG) Rlog.d(LOG_TAG, "Trying (non-IMS) CS call");
+2 −2
Original line number Diff line number Diff line
@@ -847,8 +847,8 @@ public class GSMPhone extends PhoneBase {
            }
        }

        if ((mSST != null) && (mSST.mSS.getState() == ServiceState.STATE_OUT_OF_SERVICE)
                && !isEmergency) {
        if (mSST != null && mSST.mSS.getState() == ServiceState.STATE_OUT_OF_SERVICE
                && mSST.mSS.getDataRegState() != ServiceState.STATE_IN_SERVICE && !isEmergency) {
            throw new CallStateException("cannot dial in current state");
        }
        if (LOCAL_DEBUG) Rlog.d(LOG_TAG, "Trying (non-IMS) CS call");