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

Commit befdd7e8 authored by Hall Liu's avatar Hall Liu Committed by android-build-merger
Browse files

Merge "Add null check in enterBackgroundAudioProcessing" am: 7a6eec53 am: 7c8c02da

am: 3abc52e1

Change-Id: If8a47594a9acaf6a37060d543ae94cd59221df27
parents 3c649c21 3abc52e1
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -2032,7 +2032,7 @@ public class CallsManager extends Call.ListenerBase
        }

        Call activeCall = getActiveCall();
        if (activeCall != call) {
        if (activeCall != null && activeCall != call) {
            Log.w(this, "Ignoring enter audio processing because there's already a call active");
            return;
        }