From 3fdaeea3a237507cd289e952cd05a4598a0cb3ee Mon Sep 17 00:00:00 2001 From: Michael Telatynski <7t3chguy@gmail.com> Date: Sun, 15 Sep 2019 22:24:23 +0100 Subject: [PATCH] allow rooms we were banned from into Historical also Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> --- src/stores/RoomListStore.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/stores/RoomListStore.js b/src/stores/RoomListStore.js index f209f6f9ba..980753551a 100644 --- a/src/stores/RoomListStore.js +++ b/src/stores/RoomListStore.js @@ -327,7 +327,7 @@ class RoomListStore extends Store { } else if (tags.length === 0) { tags.push("im.vector.fake.recent"); } - } else if (myMembership === 'leave') { + } else if (myMembership) { // null-guard as null means it was peeked tags.push("im.vector.fake.archived"); }