diff --git a/features/home/impl/src/main/kotlin/io/element/android/features/home/impl/datasource/RoomListDataSource.kt b/features/home/impl/src/main/kotlin/io/element/android/features/home/impl/datasource/RoomListDataSource.kt index dcda64ca9c..3ed7c383ba 100644 --- a/features/home/impl/src/main/kotlin/io/element/android/features/home/impl/datasource/RoomListDataSource.kt +++ b/features/home/impl/src/main/kotlin/io/element/android/features/home/impl/datasource/RoomListDataSource.kt @@ -119,7 +119,7 @@ class RoomListDataSource @Inject constructor( private suspend fun rebuildAllRoomSummaries() { lock.withLock { - roomListService.allRooms.summaries.replayCache.firstOrNull()?.let { roomSummaries -> + roomListService.allRooms.filteredSummaries.replayCache.firstOrNull()?.let { roomSummaries -> buildAndEmitAllRooms(roomSummaries, useCache = false) } }