Merge pull request #1748 from matrix-org/luke/fix-manually-ordered-custom-tagged-rooms

If a tag is unrecognised, assume manual ordering
pull/21833/head
Luke Barnard 2018-02-13 16:15:49 +00:00 committed by GitHub
commit e0d598fb19
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 3 deletions

View File

@ -176,12 +176,13 @@ class RoomListStore extends Store {
listOrders[order].forEach((listKey) => {
let comparator;
switch (order) {
case "manual":
comparator = this._getManualComparator(listKey, optimisticRequest);
break;
case "recent":
comparator = this._recentsComparator;
break;
case "manual":
default:
comparator = this._getManualComparator(listKey, optimisticRequest);
break;
}
lists[listKey].sort(comparator);
});