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

Commit ef49f195 authored by Luca Stefani's avatar Luca Stefani
Browse files

Merge tag 'android-10.0.0_r27' into lineage-17.1-android-10.0.0_r27

Android 10.0.0 Release 27 (QQ1B.200205.002)

* tag 'android-10.0.0_r27':
  Add missing Log.endSession

Change-Id: I4a6d4e87b010df7fdc0500d228ac4d05deb1a496
parents ec7f6a1a 0e9aab5f
Loading
Loading
Loading
Loading
+12 −8
Original line number Diff line number Diff line
@@ -1275,6 +1275,7 @@ public class CallAudioRouteStateMachine extends StateMachine {
        @Override
        public void onReceive(Context context, Intent intent) {
            Log.startSession("CARSM.mCR");
            try {
                if (AudioManager.ACTION_MICROPHONE_MUTE_CHANGED.equals(intent.getAction())) {
                    if (mCallsManager.hasEmergencyCall()) {
                        Log.i(this, "Mute was externally changed when there's an emergency call. " +
@@ -1286,6 +1287,9 @@ public class CallAudioRouteStateMachine extends StateMachine {
                } else {
                    Log.w(this, "Received non-mute-change intent");
                }
            } finally {
                Log.endSession();
            }
        }
    };