Merge pull request #2681 from matrix-org/travis/unbreak-new-rooms
Fix categorization of favourites and new rooms
This commit is contained in:
commit
ec6c104e51
1 changed files with 5 additions and 1 deletions
|
@ -287,7 +287,11 @@ class RoomListStore extends Store {
|
||||||
// Speed optimization: Skip the loop below if we're not going to do anything productive
|
// Speed optimization: Skip the loop below if we're not going to do anything productive
|
||||||
if (!hasRoom || LIST_ORDERS[key] !== 'recent') {
|
if (!hasRoom || LIST_ORDERS[key] !== 'recent') {
|
||||||
listsClone[key] = this._state.lists[key];
|
listsClone[key] = this._state.lists[key];
|
||||||
inserted = true; // Ensure that we don't try and sort the room into the tag
|
if (LIST_ORDERS[key] !== 'recent' && (hasRoom || targetTags.includes(key))) {
|
||||||
|
// Ensure that we don't try and sort the room into the tag
|
||||||
|
inserted = true;
|
||||||
|
doInsert = false;
|
||||||
|
}
|
||||||
continue;
|
continue;
|
||||||
} else {
|
} else {
|
||||||
listsClone[key] = [];
|
listsClone[key] = [];
|
||||||
|
|
Loading…
Reference in a new issue