Loading src/com/android/server/telecom/CallLogManager.java +8 −5 Original line number Diff line number Diff line Loading @@ -153,8 +153,8 @@ public final class CallLogManager extends CallsManagerListenerBase { !isCallCanceled) && !call.isExternalCall() && (!call.isSelfManaged() || call.isLoggedSelfManaged() && call.getHandoverState() != HandoverState.HANDOVER_FAILED)) { (call.isLoggedSelfManaged() && call.getHandoverState() != HandoverState.HANDOVER_FAILED))) { int type; if (!call.isIncoming()) { type = Calls.OUTGOING_TYPE; Loading @@ -167,7 +167,10 @@ public final class CallLogManager extends CallsManagerListenerBase { } else { type = Calls.INCOMING_TYPE; } logCall(call, type, true /*showNotificationForMissedCall*/); // 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(); logCall(call, type, showNotification); } } Loading Loading
src/com/android/server/telecom/CallLogManager.java +8 −5 Original line number Diff line number Diff line Loading @@ -153,8 +153,8 @@ public final class CallLogManager extends CallsManagerListenerBase { !isCallCanceled) && !call.isExternalCall() && (!call.isSelfManaged() || call.isLoggedSelfManaged() && call.getHandoverState() != HandoverState.HANDOVER_FAILED)) { (call.isLoggedSelfManaged() && call.getHandoverState() != HandoverState.HANDOVER_FAILED))) { int type; if (!call.isIncoming()) { type = Calls.OUTGOING_TYPE; Loading @@ -167,7 +167,10 @@ public final class CallLogManager extends CallsManagerListenerBase { } else { type = Calls.INCOMING_TYPE; } logCall(call, type, true /*showNotificationForMissedCall*/); // 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(); logCall(call, type, showNotification); } } Loading