diff --git a/apps/multiplatform/common/src/commonMain/kotlin/chat/simplex/common/views/chat/ChatView.kt b/apps/multiplatform/common/src/commonMain/kotlin/chat/simplex/common/views/chat/ChatView.kt index a25afda5a4..bb3f4a24ed 100644 --- a/apps/multiplatform/common/src/commonMain/kotlin/chat/simplex/common/views/chat/ChatView.kt +++ b/apps/multiplatform/common/src/commonMain/kotlin/chat/simplex/common/views/chat/ChatView.kt @@ -1019,7 +1019,9 @@ fun BoxWithConstraintsScope.ChatItemsList( snapshotFlow { chatModel.chatId.value } .distinctUntilChanged() .collect { - revealedItems.value = setOf() + if (revealedItems.value.isNotEmpty()) { + revealedItems.value = setOf() + } preloadItemsEnabled.value = true val firstUnreadItem = reversedChatItems.findLast { it.isRcvNew } if (firstUnreadItem != null) {