From 3265fe394dc18b404ba9188ec31e637880d779d2 Mon Sep 17 00:00:00 2001 From: Bruno Windels Date: Tue, 5 Feb 2019 17:35:05 +0000 Subject: [PATCH] don't filter out custom tags anymore --- src/stores/RoomListStore.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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) {