diff options
author | David Baker <dave@matrix.org> | 2017-10-05 13:03:44 +0100 |
---|---|---|
committer | David Baker <dave@matrix.org> | 2017-10-05 13:03:44 +0100 |
commit | 985ce80375b601d500ae58faa032874a794e942a (patch) | |
tree | 0dd854ae583c4dfb7cee85151680297ec03ec1a0 /synapse/push | |
parent | Get rule type right (diff) | |
download | synapse-985ce80375b601d500ae58faa032874a794e942a.tar.xz |
They're called rooms
Diffstat (limited to 'synapse/push')
-rw-r--r-- | synapse/push/baserules.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/synapse/push/baserules.py b/synapse/push/baserules.py index 3b290a22a1..71f9ab6b25 100644 --- a/synapse/push/baserules.py +++ b/synapse/push/baserules.py @@ -240,18 +240,18 @@ BASE_APPEND_OVERRIDE_RULES = [ ] }, { - 'rule_id': 'global/override/.m.rule.channelnotif', + 'rule_id': 'global/override/.m.rule.roomnotif', 'conditions': [ { 'kind': 'event_match', 'key': 'content.body', - 'pattern': '*@channel*', - '_id': '_channelnotif_content', + 'pattern': '*@room*', + '_id': '_roomnotif_content', }, { 'kind': 'sender_power_level', 'is': '>=50', - '_id': '_channelnotif_pl', + '_id': '_roomnotif_pl', }, ], 'actions': [ |