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

Commit 04d4dd51 authored by Brad Ebinger's avatar Brad Ebinger Committed by Android (Google) Code Review
Browse files

Merge "Fix In Conference MMI codes"

parents de07f4dc 35c77cd6
Loading
Loading
Loading
Loading
+5 −3
Original line number Diff line number Diff line
@@ -1259,7 +1259,7 @@ public class GsmCdmaCallTracker extends CallTracker {
        int count = call.mConnections.size();
        for (int i = 0; i < count; i++) {
            GsmCdmaConnection cn = (GsmCdmaConnection)call.mConnections.get(i);
            if (cn.getGsmCdmaIndex() == index) {
            if (!cn.mDisconnected && cn.getGsmCdmaIndex() == index) {
                mCi.hangupConnection(index, obtainCompleteMessage());
                return;
            }
@@ -1273,8 +1273,10 @@ public class GsmCdmaCallTracker extends CallTracker {
            int count = call.mConnections.size();
            for (int i = 0; i < count; i++) {
                GsmCdmaConnection cn = (GsmCdmaConnection)call.mConnections.get(i);
                if (!cn.mDisconnected) {
                    mCi.hangupConnection(cn.getGsmCdmaIndex(), obtainCompleteMessage());
                }
            }
        } catch (CallStateException ex) {
            Rlog.e(LOG_TAG, "hangupConnectionByIndex caught " + ex);
        }
@@ -1285,7 +1287,7 @@ public class GsmCdmaCallTracker extends CallTracker {
        int count = call.mConnections.size();
        for (int i = 0; i < count; i++) {
            GsmCdmaConnection cn = (GsmCdmaConnection)call.mConnections.get(i);
            if (cn.getGsmCdmaIndex() == index) {
            if (!cn.mDisconnected && cn.getGsmCdmaIndex() == index) {
                return cn;
            }
        }