don't filter out custom tags anymore
This commit is contained in:
parent
a6d7f6a4c7
commit
3265fe394d
1 changed files with 2 additions and 2 deletions
|
@ -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) => {
|
tagNames = tagNames.filter((t) => {
|
||||||
return lists[t] !== undefined;
|
return !t.startsWith('m.') || lists[t] !== undefined;
|
||||||
});
|
});
|
||||||
|
|
||||||
if (tagNames.length) {
|
if (tagNames.length) {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue