Added missing is GroupEventResult.Duplicate branch at DecryptAndIndexProcessor.kt:499 — it logs and ignores duplicate events

This commit is contained in:
davotoula
2026-04-08 11:12:02 +02:00
parent 5a72385a37
commit ade3ed5690
@@ -496,6 +496,10 @@ class GroupEventHandler(
Log.d("GroupEventHandler", "Commit pending for group ${result.groupId}, epoch=${result.epoch}")
}
is GroupEventResult.Duplicate -> {
Log.d("GroupEventHandler", "Duplicate event for group ${result.groupId}")
}
is GroupEventResult.Error -> {
Log.w("GroupEventHandler") { "Error processing GroupEvent: ${result.message}" }
}