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

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

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

Merge "Merge "Merge "AudioService: fix BT SCO volume mute" into tm-qpr-dev am: 77c92478 am: e5a19023" into udc-dev am: 67f57149 am: c84f6950"
parents 04c8d6ac 74e98bfd
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -8597,7 +8597,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);
                    }
                }
            }