Add parent id to children array to support proper deletion.
This commit is contained in:
parent
096eea70d1
commit
064cbf0b01
1 changed files with 1 additions and 1 deletions
|
@ -188,7 +188,7 @@ class CallEventCache(
|
|||
} else {
|
||||
CallLogRow.GroupCallState.NONE
|
||||
},
|
||||
children = children,
|
||||
children = setOf(parent.rowId) + children,
|
||||
searchQuery = filterState.query,
|
||||
callLinkPeekInfo = AppDependencies.signalCallManager.peekInfoSnapshot[peer.id],
|
||||
canUserBeginCall = if (peer.isGroup) {
|
||||
|
|
Loading…
Add table
Reference in a new issue