Fix sorting again and again god damn

This commit is contained in:
Christian Pauly 2020-06-25 09:51:24 +02:00
parent 33c2edae19
commit 34425b035f
1 changed files with 1 additions and 4 deletions

View File

@ -744,9 +744,6 @@ class Client {
} }
accountData[newAccountData.type] = newAccountData; accountData[newAccountData.type] = newAccountData;
if (onAccountData != null) onAccountData.add(newAccountData); if (onAccountData != null) onAccountData.add(newAccountData);
if (newAccountData.type == 'm.tag') {
_sortRooms();
}
} }
} }
if (sync.deviceLists != null) { if (sync.deviceLists != null) {
@ -1068,7 +1065,7 @@ class Client {
BasicRoomEvent.fromJson(eventUpdate.content); BasicRoomEvent.fromJson(eventUpdate.content);
} }
if (rooms[j].onUpdate != null) rooms[j].onUpdate.add(rooms[j].id); if (rooms[j].onUpdate != null) rooms[j].onUpdate.add(rooms[j].id);
if (eventUpdate.type == 'timeline') _sortRooms(); if (['timeline', 'account_data'].contains(eventUpdate.type)) _sortRooms();
} }
bool _sortLock = false; bool _sortLock = false;