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

Commit 9fb5593f authored by Shriram Ganesh's avatar Shriram Ganesh Committed by android-build-merger
Browse files

Merge "IMS: During SRVCC, mark dropped incoming call as missed call" into...

Merge "IMS: During SRVCC, mark dropped incoming call as missed call" into mm-wireless-dev am: 4a7398aa
am: c4e18430

* commit 'c4e18430':
  IMS: During SRVCC, mark dropped incoming call as missed call
parents e4612968 c4e18430
Loading
Loading
Loading
Loading
+7 −2
Original line number Diff line number Diff line
@@ -1018,8 +1018,13 @@ public class GsmCdmaCallTracker extends CallTracker {
        for (Iterator<Connection> it = mHandoverConnections.iterator();
                it.hasNext();) {
            Connection hoConnection = it.next();
            log("handlePollCalls - disconnect hoConn= " + hoConnection);
            log("handlePollCalls - disconnect hoConn= " + hoConnection +
                    " hoConn.State= " + hoConnection.getState());
            if (hoConnection.getState().isRinging()) {
                hoConnection.onDisconnect(DisconnectCause.INCOMING_MISSED);
            } else {
                hoConnection.onDisconnect(DisconnectCause.NOT_VALID);
            }
            it.remove();
        }