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

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

Merge "Add support for SRVCC conference call"

parents 0729b239 6f1347fb
Loading
Loading
Loading
Loading
+9 −0
Original line number Diff line number Diff line
@@ -1367,6 +1367,15 @@ public final class ImsPhoneCallTracker extends CallTracker {
        } else { // Multi-call SRVCC
            mHandoverCall.mConnections.addAll(call.mConnections);
        }
        if (mHandoverCall.mConnections != null) {
            for (Connection c : mHandoverCall.mConnections) {
                ((ImsPhoneConnection)c).changeParent(mHandoverCall);
            }
        }
        if (call.getState().isAlive()) {
            log ("Call is alive and state is " + call.mState);
            mHandoverCall.mState = call.mState;
        }
        call.mConnections.clear();
        call.mState = ImsPhoneCall.State.IDLE;
    }