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

Commit 28115f47 authored by Hall Liu's avatar Hall Liu Committed by android-build-merger
Browse files

Don't unmute when answering a handover connection am: 25921e8d am: 7b1c2149

am: a818e8bc

Change-Id: I9a58ee5ac3eef397314fbd0cfe26a67db8980d6c
parents a81f4d78 a818e8bc
Loading
Loading
Loading
Loading
+4 −2
Original line number Diff line number Diff line
@@ -232,8 +232,10 @@ public class CallAudioManager extends CallsManagerListenerBase {
            }
        }

        // Turn off mute when a new incoming call is answered.
        // Turn off mute when a new incoming call is answered iff it's not a handover.
        if (!call.isHandoverInProgress()) {
            mute(false /* shouldMute */);
        }

        maybeStopRingingAndCallWaitingForAnsweredOrRejectedCall(call);
    }