switch to m.* prefixes for tags before it's too late

This commit is contained in:
Matthew Hodgson 2015-11-06 21:00:34 +01:00
parent c884c5fc33
commit 886ffbf158
3 changed files with 13 additions and 13 deletions

View file

@ -139,8 +139,8 @@ module.exports = {
var me = room.getMember(MatrixClientPeg.get().credentials.userId);
if (me && me.membership == "invite") {
s.lists["invites"] = s.lists["invites"] || [];
s.lists["invites"].push(room);
s.lists["m.invite"] = s.lists["m.invite"] || [];
s.lists["m.invite"].push(room);
}
else {
var shouldShowRoom = (
@ -172,8 +172,8 @@ module.exports = {
}
}
else {
s.lists["recents"] = s.lists["recents"] || [];
s.lists["recents"].push(room);
s.lists["m.recent"] = s.lists["m.recent"] || [];
s.lists["m.recent"].push(room);
}
}
}