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

Commit 2a5f515f authored by Ajay Nambi's avatar Ajay Nambi Committed by android-build-merger
Browse files

IMS : Dont treat Conference participants as individual calls am: 1b8babe9 am: 200d67dc

am: a59a4849

Change-Id: I3c333b760041792b63978179270cad90e5ed38cb
parents 84fd4b07 a59a4849
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -2443,6 +2443,7 @@ public class CallsManager extends Call.ListenerBase
    public Call getHeldCallByConnectionService(ConnectionServiceWrapper connSvr) {
        Optional<Call> heldCall = mCalls.stream()
                .filter(call -> call.getConnectionService() == connSvr
                        && call.getParentCall() == null
                        && call.getState() == CallState.ON_HOLD)
                .findFirst();
        return heldCall.isPresent() ? heldCall.get() : null;