Merge pull request #3445 from matrix-org/t3chguy/nvl/historical_preview
Only put a room in Historical if === 'leave' not peeked
This commit is contained in:
commit
2a67970d32
1 changed files with 1 additions and 1 deletions
|
@ -327,7 +327,7 @@ class RoomListStore extends Store {
|
||||||
} else if (tags.length === 0) {
|
} else if (tags.length === 0) {
|
||||||
tags.push("im.vector.fake.recent");
|
tags.push("im.vector.fake.recent");
|
||||||
}
|
}
|
||||||
} else {
|
} else if (myMembership) { // null-guard as null means it was peeked
|
||||||
tags.push("im.vector.fake.archived");
|
tags.push("im.vector.fake.archived");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue