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

Commit 70cb1637 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

Change-Id: I797650bdb9ebd2e5d586e1de2ca52cd9cf14172e
parents 4fc672a3 25921e8d
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);
    }