summaryrefslogtreecommitdiff
path: root/java/com/android/dialer/calllog/ui/menu/NewCallLogMenu.java
diff options
context:
space:
mode:
Diffstat (limited to 'java/com/android/dialer/calllog/ui/menu/NewCallLogMenu.java')
-rw-r--r--java/com/android/dialer/calllog/ui/menu/NewCallLogMenu.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/java/com/android/dialer/calllog/ui/menu/NewCallLogMenu.java b/java/com/android/dialer/calllog/ui/menu/NewCallLogMenu.java
index 9efe907e3..5be19ce0c 100644
--- a/java/com/android/dialer/calllog/ui/menu/NewCallLogMenu.java
+++ b/java/com/android/dialer/calllog/ui/menu/NewCallLogMenu.java
@@ -42,11 +42,11 @@ public final class NewCallLogMenu {
// If the user opens the bottom sheet for a new call, clear the notifications and make the row
// not bold immediately. To do this, mark all of the calls in group as not new.
- if (row.isNew() && row.callType() == Calls.MISSED_TYPE) {
+ if (row.getIsNew() && row.getCallType() == Calls.MISSED_TYPE) {
Futures.addCallback(
CallLogComponent.get(context)
.getClearMissedCalls()
- .clearBySystemCallLogId(row.coalescedIds().getCoalescedIdList()),
+ .clearBySystemCallLogId(row.getCoalescedIds().getCoalescedIdList()),
new DefaultFutureCallback<>(),
MoreExecutors.directExecutor());
}