diff options
author | David Baker <dave@matrix.org> | 2016-06-24 11:41:11 +0100 |
---|---|---|
committer | David Baker <dave@matrix.org> | 2016-06-24 11:41:11 +0100 |
commit | 870c45913ef17584a65d0acf98336f1ddd6bf1c0 (patch) | |
tree | 2081f0da923a22df61fa561bb36ac30d44c68828 /synapse/push/httppusher.py | |
parent | Merge branch 'master' into develop (diff) | |
download | synapse-870c45913ef17584a65d0acf98336f1ddd6bf1c0.tar.xz |
Use similar naming we use in email notifs for push
Fixes https://github.com/vector-im/vector-web/issues/1654
Diffstat (limited to 'synapse/push/httppusher.py')
-rw-r--r-- | synapse/push/httppusher.py | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/synapse/push/httppusher.py b/synapse/push/httppusher.py index 3992804845..2acc6cc214 100644 --- a/synapse/push/httppusher.py +++ b/synapse/push/httppusher.py @@ -38,6 +38,7 @@ class HttpPusher(object): self.hs = hs self.store = self.hs.get_datastore() self.clock = self.hs.get_clock() + self.state_handler = self.hs.get_state_handler() self.user_id = pusherdict['user_name'] self.app_id = pusherdict['app_id'] self.app_display_name = pusherdict['app_display_name'] @@ -237,7 +238,9 @@ class HttpPusher(object): @defer.inlineCallbacks def _build_notification_dict(self, event, tweaks, badge): - ctx = yield push_tools.get_context_for_event(self.hs.get_datastore(), event) + ctx = yield push_tools.get_context_for_event( + self.state_handler, event, self.user_id + ) d = { 'notification': { @@ -269,8 +272,8 @@ class HttpPusher(object): if 'content' in event: d['notification']['content'] = event.content - if len(ctx['aliases']): - d['notification']['room_alias'] = ctx['aliases'][0] + # We no longer send aliases separately, instead, we send the human + # readable name of the room, which may be an alias. if 'sender_display_name' in ctx and len(ctx['sender_display_name']) > 0: d['notification']['sender_display_name'] = ctx['sender_display_name'] if 'name' in ctx and len(ctx['name']) > 0: |