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

Commit 3abc52e1 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

Change-Id: I0785f8d6505da5cc8bbcd312b7bd2c849472dacd
parents 5d2aa36e 7c8c02da
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;
        }