If a tag is unrecognised, assume manual ordering

(as we did previously)

Fixes https://github.com/vector-im/riot-web/issues/6135
pull/21833/head
Luke Barnard 2018-02-13 16:09:17 +00:00
parent a0aa3df893
commit f16bc93fee
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);
});