diff options
author | Erik Johnston <erik@matrix.org> | 2016-08-25 18:32:15 +0100 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2016-08-25 18:35:49 +0100 |
commit | 7356d52e73b1d63502867530ccee3e406766c745 (patch) | |
tree | 6fe4d9f9251ef860efa9a17b253f7c34558bb13d /synapse/push/httppusher.py | |
parent | Pull out full state less (diff) | |
download | synapse-7356d52e73b1d63502867530ccee3e406766c745.tar.xz |
Fix up push to use get_current_state_ids
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 feedb075e2..c0f8176e3d 100644 --- a/synapse/push/httppusher.py +++ b/synapse/push/httppusher.py @@ -245,7 +245,7 @@ class HttpPusher(object): @defer.inlineCallbacks def _build_notification_dict(self, event, tweaks, badge): ctx = yield push_tools.get_context_for_event( - self.state_handler, event, self.user_id + self.store, self.state_handler, event, self.user_id ) d = { |