Fix skipping subsequent call links.

This commit is contained in:
Alex Hart
2025-05-21 14:57:42 -03:00
committed by Cody Henthorne
parent 23669c3c37
commit 8e92ddbd53
2 changed files with 22 additions and 1 deletions

View File

@@ -98,7 +98,8 @@ class CallEventCache(
val child = next()
if (child.type == Type.AD_HOC_CALL.code) {
continue
previous()
break
}
if (parent.peer == child.peer && parent.direction == child.direction && isEventMatch(parent, child) && isWithinTimeout(parent, child)) {