Hook up the push rules stream to account_data in /sync

This commit is contained in:
Mark Haines 2016-03-04 14:44:01 +00:00
parent 3406eba4ef
commit 1b4f4a936f
4 changed files with 85 additions and 69 deletions

View file

@ -156,7 +156,7 @@ class PushRuleRestServlet(ClientV1RestServlet):
return 200, {}
def notify_user(self, user_id):
stream_id = self.store.get_push_rules_stream_token()
stream_id, _ = self.store.get_push_rules_stream_token()
self.notifier.on_new_event(
"push_rules_key", stream_id, users=[user_id]
)