mirror of https://github.com/vector-im/riot-web
Only put a room in Historical if === 'leave' not peeked
Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>pull/21833/head
parent
e18b38c409
commit
4fb4c5b744
|
@ -327,7 +327,7 @@ class RoomListStore extends Store {
|
|||
} else if (tags.length === 0) {
|
||||
tags.push("im.vector.fake.recent");
|
||||
}
|
||||
} else {
|
||||
} else if (myMembership === 'leave') {
|
||||
tags.push("im.vector.fake.archived");
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue