Don't mark a room as unread when server ACLs are set

Signed-off-by: Aaron Raimist <aaron@raim.ist>
pull/21833/head
Aaron Raimist 2019-12-06 17:34:27 -06:00
parent cb28e2062b
commit aa8e6186eb
No known key found for this signature in database
GPG Key ID: 37419210002890EF
1 changed files with 2 additions and 0 deletions

View File

@ -36,6 +36,8 @@ module.exports = {
return false;
} else if (ev.getType() == 'm.room.aliases' || ev.getType() == 'm.room.canonical_alias') {
return false;
} else if (ev.getType() == 'm.room.server_acl') {
return false;
}
const EventTile = sdk.getComponent('rooms.EventTile');
return EventTile.haveTileForEvent(ev);