diff --git a/src/stores/RoomListStore.js b/src/stores/RoomListStore.js index 0f8e5d7b4d..c636c53631 100644 --- a/src/stores/RoomListStore.js +++ b/src/stores/RoomListStore.js @@ -224,9 +224,9 @@ class RoomListStore extends Store { } } - // ignore any m. tag names we don't know about + // ignore tags we don't know about tagNames = tagNames.filter((t) => { - return !t.startsWith('m.') || lists[t] !== undefined; + return lists[t] !== undefined; }); if (tagNames.length) {