RoomList: fix small error in update processing
This commit is contained in:
parent
7ba14b3014
commit
208850c0f5
1 changed files with 2 additions and 3 deletions
|
|
@ -77,15 +77,14 @@ class RoomSummaryListProcessor(
|
||||||
removeAt(update.index.toInt())
|
removeAt(update.index.toInt())
|
||||||
}
|
}
|
||||||
is RoomListEntriesUpdate.Reset -> {
|
is RoomListEntriesUpdate.Reset -> {
|
||||||
Timber.v("Reset size: ${update.values.size}")
|
|
||||||
clear()
|
clear()
|
||||||
addAll(update.values.map { buildSummaryForRoomListEntry(it) })
|
addAll(update.values.map { buildSummaryForRoomListEntry(it) })
|
||||||
}
|
}
|
||||||
RoomListEntriesUpdate.PopBack -> {
|
RoomListEntriesUpdate.PopBack -> {
|
||||||
removeFirstOrNull()
|
removeLastOrNull()
|
||||||
}
|
}
|
||||||
RoomListEntriesUpdate.PopFront -> {
|
RoomListEntriesUpdate.PopFront -> {
|
||||||
removeLastOrNull()
|
removeFirstOrNull()
|
||||||
}
|
}
|
||||||
RoomListEntriesUpdate.Clear -> {
|
RoomListEntriesUpdate.Clear -> {
|
||||||
clear()
|
clear()
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue