diff options
author | David Baker <dave@matrix.org> | 2017-10-16 13:38:10 +0100 |
---|---|---|
committer | David Baker <dave@matrix.org> | 2017-10-16 13:38:10 +0100 |
commit | 9342bcfce08c862ea5027e865b23bf2bd6ad3a8c (patch) | |
tree | b93f9ceb638396325ddcbaed4a1d261f94d0f24f /synapse | |
parent | Merge pull request #2538 from matrix-org/erikj/media_backup (diff) | |
download | synapse-9342bcfce08c862ea5027e865b23bf2bd6ad3a8c.tar.xz |
Omit the *s for @room notifications
They're just redundant
Diffstat (limited to 'synapse')
-rw-r--r-- | synapse/push/baserules.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/push/baserules.py b/synapse/push/baserules.py index 9dce99ebec..7a18afe5f9 100644 --- a/synapse/push/baserules.py +++ b/synapse/push/baserules.py @@ -245,7 +245,7 @@ BASE_APPEND_OVERRIDE_RULES = [ { 'kind': 'event_match', 'key': 'content.body', - 'pattern': '*@room*', + 'pattern': '@room', '_id': '_roomnotif_content', }, { |