diff options
author | Luke Barnard <lukeb@openmarket.com> | 2017-10-16 15:34:36 +0100 |
---|---|---|
committer | Luke Barnard <lukeb@openmarket.com> | 2017-10-16 15:34:36 +0100 |
commit | 5dfd0350c7b0c54c0cf7bd1c9077e8a56927fbe1 (patch) | |
tree | f6051ff6fd3eec706bdd480c2f0280e71677acdb | |
parent | Implement GET /groups/$groupId/invited_users (diff) | |
parent | Merge pull request #2543 from matrix-org/luke/fix-on-group-invite-no-profile (diff) | |
download | synapse-5dfd0350c7b0c54c0cf7bd1c9077e8a56927fbe1.tar.xz |
Merge branch 'develop' into luke/groups-invited-users
-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', }, { |