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

Commit 05fce092 authored by Eric Laurent's avatar Eric Laurent Committed by Android Git Automerger
Browse files

am 8d24fe23: Merge "AudioService: fix permission check." into lmp-mr1-dev

* commit '8d24fe23':
  AudioService: fix permission check.
parents 87343eff 8d24fe23
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -3248,7 +3248,10 @@ public class AudioService extends IAudioService.Stub {

        TelecomManager telecomManager =
                (TelecomManager) mContext.getSystemService(Context.TELECOM_SERVICE);

        final long ident = Binder.clearCallingIdentity();
        IsInCall = telecomManager.isInCall();
        Binder.restoreCallingIdentity(ident);

        return (IsInCall || getMode() == AudioManager.MODE_IN_COMMUNICATION);
    }