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

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

Merge "Add null check in enterBackgroundAudioProcessing"

am: 7a6eec53

Change-Id: I3b7acfd0a5315cf66f38a14088d10a0c8015c90f
parents 1d4becc8 7a6eec53
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -2040,7 +2040,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;
        }