RoomList: fix small error in update processing

This commit is contained in:
ganfra 2023-06-26 22:58:54 +02:00
parent 7c76a74a30
commit eb00ef3c06

View file

@ -77,15 +77,14 @@ class RoomSummaryListProcessor(
removeAt(update.index.toInt())
}
is RoomListEntriesUpdate.Reset -> {
Timber.v("Reset size: ${update.values.size}")
clear()
addAll(update.values.map { buildSummaryForRoomListEntry(it) })
}
RoomListEntriesUpdate.PopBack -> {
removeFirstOrNull()
removeLastOrNull()
}
RoomListEntriesUpdate.PopFront -> {
removeLastOrNull()
removeFirstOrNull()
}
RoomListEntriesUpdate.Clear -> {
clear()