mirror of
https://github.com/signalapp/Signal-Android.git
synced 2026-02-27 05:03:28 +00:00
Do not show outgoing calls in missed call filter.
This commit is contained in:
committed by
Cody Henthorne
parent
f0e6b2944a
commit
80fc40bbc2
@@ -123,7 +123,7 @@ class CallEventCache(
|
||||
}
|
||||
|
||||
private fun isMissedCall(call: CacheRecord): Boolean {
|
||||
return call.event in MISSED_CALL_EVENTS || isMissedGroupCall(call)
|
||||
return (call.direction == Direction.serialize(CallTable.Direction.INCOMING) && call.event in MISSED_CALL_EVENTS) || isMissedGroupCall(call)
|
||||
}
|
||||
|
||||
private fun isEventMatch(parent: CacheRecord, child: CacheRecord): Boolean {
|
||||
|
||||
Reference in New Issue
Block a user