RoomList: fix small error in update processing
This commit is contained in:
@@ -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()
|
||||
|
||||
Reference in New Issue
Block a user