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

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

Merge "Ignore IMS type APN when notify data connection"

parents 1917df1a fbe60c95
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -1028,7 +1028,8 @@ class TelephonyRegistry extends ITelephonyRegistry.Stub {
                }
                boolean modified = false;
                if (state == TelephonyManager.DATA_CONNECTED) {
                    if (!mConnectedApns[phoneId].contains(apnType)) {
                    if (!mConnectedApns[phoneId].contains(apnType)
                            && !apnType.equals(PhoneConstants.APN_TYPE_IMS)) {
                        mConnectedApns[phoneId].add(apnType);
                        if (mDataConnectionState[phoneId] != state) {
                            mDataConnectionState[phoneId] = state;