summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBrad Ebinger <breadley@google.com>2017-07-06 00:40:19 +0000
committerandroid-build-merger <android-build-merger@google.com>2017-07-06 00:40:19 +0000
commitfe90a7982782761ba82cb5a0a045a418529b6f7f (patch)
treee78bfada0df14e5e3fe55329358e36a96b3ee0b2
parent00e952388def93aec4f52a87ba1f4b91a6a99db4 (diff)
parentad88035821a52b5592f9f1ff2e272a6def3d401d (diff)
downloadandroid_packages_services_Telecomm-fe90a7982782761ba82cb5a0a045a418529b6f7f.tar.gz
android_packages_services_Telecomm-fe90a7982782761ba82cb5a0a045a418529b6f7f.tar.bz2
android_packages_services_Telecomm-fe90a7982782761ba82cb5a0a045a418529b6f7f.zip
Fix call log notification bug for self-managed calls am: 38141eefcd
am: ad88035821 Change-Id: If43b021a3ac4b049df377ad23ad6048c34f59e9c
-rwxr-xr-xsrc/com/android/server/telecom/CallLogManager.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/com/android/server/telecom/CallLogManager.java b/src/com/android/server/telecom/CallLogManager.java
index aaa34668..ce60d0b5 100755
--- a/src/com/android/server/telecom/CallLogManager.java
+++ b/src/com/android/server/telecom/CallLogManager.java
@@ -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);
}
}