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

Commit fe90a798 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

am: ad880358

Change-Id: If43b021a3ac4b049df377ad23ad6048c34f59e9c
parents 00e95238 ad880358
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);
        }
    }