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

Commit ad880358 authored by Brad Ebinger's avatar Brad Ebinger Committed by android-build-merger
Browse files

Fix call log notification bug for self-managed calls

am: 38141eef

Change-Id: I846df2048cc92be8785378d24fcb4b138930b664
parents 0d0a8ef0 38141eef
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -169,7 +169,7 @@ public final class CallLogManager extends CallsManagerListenerBase {
            }
            // Always show the notification for managed calls. For self-managed calls, it is up to
            // the app to show the notification, so suppress the notification when logging the call.
            boolean showNotification = !call.isLoggedSelfManaged();
            boolean showNotification = !call.isSelfManaged();
            logCall(call, type, showNotification);
        }
    }