Fix wrong type for sort

This commit is contained in:
Christian Pauly 2020-06-25 09:36:28 +02:00
parent 66e137582e
commit c536af32f5
1 changed files with 1 additions and 1 deletions

View File

@ -744,7 +744,7 @@ class Client {
}
accountData[newAccountData.type] = newAccountData;
if (onAccountData != null) onAccountData.add(newAccountData);
if (newAccountData.type == 'm.direct') {
if (newAccountData.type == 'm.tag') {
_sortRooms();
}
}