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

Commit 67f57149 authored by Automerger Merge Worker's avatar Automerger Merge Worker Committed by Android (Google) Code Review
Browse files

Merge "Merge "AudioService: fix BT SCO volume mute" into tm-qpr-dev am:...

Merge "Merge "AudioService: fix BT SCO volume mute" into tm-qpr-dev am: 77c92478 am: e5a19023" into udc-dev
parents 6a97c26e f7953e46
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -8588,7 +8588,9 @@ public class AudioService extends IAudioService.Stub
                    if (isMutable()) {
                        // For call stream, align mute only when muted, not when index is set to 0
                        mVolumeGroupState.mute(
                                forceMuteState ? mIsMuted : groupIndex == 0 || mIsMuted);
                                forceMuteState ? mIsMuted :
                                        (groupIndex == 0 && !isCallStream(mStreamType))
                                                || mIsMuted);
                    }
                }
            }