fix: Make sure that you deselect rooms on leaving, even if that fails

This commit is contained in:
Sorunome 2021-08-29 13:21:18 +02:00
parent 161791a07d
commit b0ecc408b5
No known key found for this signature in database
GPG Key ID: B19471D07FC9BE9C

View File

@ -327,10 +327,13 @@ class ChatListController extends State<ChatList> {
final client = Matrix.of(context).client;
while (selectedRoomIds.isNotEmpty) {
final roomId = selectedRoomIds.first;
try {
await client.getRoomById(roomId).leave();
} finally {
toggleSelection(roomId);
}
}
}
Future<void> addOrRemoveToSpace() async {
if (activeSpaceId != null) {