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

Commit a59a4849 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

Change-Id: I15927cea92ec83dd512d438697961653df861b13
parents e1dbb3d2 200d67dc
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -2444,6 +2444,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;