Fixes #2005 - Remove rooms from the room list after leaving them

This commit is contained in:
Stefan Ceriu 2023-11-24 09:45:23 +02:00 committed by Stefan Ceriu
parent 0d9579d78e
commit 026afed54a
2 changed files with 2 additions and 1 deletions

View File

@ -151,7 +151,7 @@ class RoomSummaryProvider: RoomSummaryProviderProtocol {
case .none:
_ = listUpdatesSubscriptionResult?.controller.setFilter(kind: .none)
case .all:
_ = listUpdatesSubscriptionResult?.controller.setFilter(kind: .all)
_ = listUpdatesSubscriptionResult?.controller.setFilter(kind: .allNonLeft)
case .normalizedMatchRoomName(let query):
_ = listUpdatesSubscriptionResult?.controller.setFilter(kind: .normalizedMatchRoomName(pattern: query.lowercased()))
}

1
changelog.d/2005.bugfix Normal file
View File

@ -0,0 +1 @@
Remove rooms from the room list after leaving them