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

Commit 388c96e5 authored by Benergy Meenan Ravuri's avatar Benergy Meenan Ravuri Committed by Gerrit - the friendly Code Review server
Browse files

IMS: Do not mute the Mic during add call

Do not mute the mic during add call.

Change-Id: Ic30e4ab033a3af205cecfbdf5157a7b101f387ad
CRs-Fixed: 995962
parent 773dcaa2
Loading
Loading
Loading
Loading
+7 −5
Original line number Diff line number Diff line
@@ -300,11 +300,13 @@ public class CallButtonPresenter extends Presenter<CallButtonPresenter.CallButto
    }

    public void addCallClicked() {
        if (!QtiImsExtUtils.isCarrierOneSupported()) {
            // Automatically mute the current call
            mAutomaticallyMuted = true;
            mPreviousMuteState = AudioModeProvider.getInstance().getMute();
            // Simulate a click on the mute button
            muteClicked(true);
        }
        TelecomAdapter.getInstance().addCall();
    }