diff options
author | David Robertson <davidr@element.io> | 2021-09-22 13:35:31 +0100 |
---|---|---|
committer | David Robertson <davidr@element.io> | 2021-09-22 13:35:31 +0100 |
commit | a8340692aba9eab439e989d1c2512e107abe455f (patch) | |
tree | f2d206753cf79498065bef6556b870a949484bf8 /synapse/push/httppusher.py | |
parent | Merge remote-tracking branch 'origin/dmr/cache-eviction-hack' into matrix-org... (diff) | |
parent | Include outlier status in `str(event)` for V2/V3 events (#10879) (diff) | |
download | synapse-a8340692aba9eab439e989d1c2512e107abe455f.tar.xz |
Merge remote-tracking branch 'origin/develop' into matrix-org-hotfixes
Diffstat (limited to 'synapse/push/httppusher.py')
-rw-r--r-- | synapse/push/httppusher.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/push/httppusher.py b/synapse/push/httppusher.py index 250a4861b0..33430b167c 100644 --- a/synapse/push/httppusher.py +++ b/synapse/push/httppusher.py @@ -370,7 +370,7 @@ class HttpPusher(Pusher): if event.type == "m.room.member" and event.is_state(): d["notification"]["membership"] = event.content["membership"] d["notification"]["user_is_target"] = event.state_key == self.user_id - if self.hs.config.push_include_content and event.content: + if self.hs.config.push.push_include_content and event.content: d["notification"]["content"] = event.content # We no longer send aliases separately, instead, we send the human |