mirror of https://github.com/vector-im/riot-web
Merge pull request #3445 from matrix-org/t3chguy/nvl/historical_preview
Only put a room in Historical if === 'leave' not peekedpull/21833/head
commit
2a67970d32
|
@ -327,7 +327,7 @@ class RoomListStore extends Store {
|
|||
} else if (tags.length === 0) {
|
||||
tags.push("im.vector.fake.recent");
|
||||
}
|
||||
} else {
|
||||
} else if (myMembership) { // null-guard as null means it was peeked
|
||||
tags.push("im.vector.fake.archived");
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue