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

Commit e5a19023 authored by Eric Laurent's avatar Eric Laurent Committed by Automerger Merge Worker
Browse files

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

parents c5bc1deb 77c92478
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -8402,7 +8402,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);
                    }
                }
            }