mirror of
https://github.com/SchildiChat/SchildiChat-android.git
synced 2024-11-22 01:15:54 +03:00
ignore verification events from initial sync
This commit is contained in:
parent
ca2d36303c
commit
2d388f392f
1 changed files with 3 additions and 1 deletions
|
@ -153,7 +153,9 @@ internal class RustCryptoService @Inject constructor(
|
|||
EventType.STATE_ROOM_HISTORY_VISIBILITY -> onRoomHistoryVisibilityEvent(roomId, event)
|
||||
}
|
||||
} else {
|
||||
verificationService.onEvent(roomId, event)
|
||||
if (!initialSync) {
|
||||
verificationService.onEvent(roomId, event)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue