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