diff options
author | David Baker <dave@matrix.org> | 2015-12-21 15:28:54 +0000 |
---|---|---|
committer | David Baker <dave@matrix.org> | 2015-12-21 15:28:54 +0000 |
commit | f73f154ec2c8ffdc49270d3ccaf3053f915800f3 (patch) | |
tree | 2f428c3e2b2a3980d70c0b8f923b998ecc0a6239 /synapse/handlers/_base.py | |
parent | pep8 (diff) | |
download | synapse-f73f154ec2c8ffdc49270d3ccaf3053f915800f3.tar.xz |
Only run pushers for users on this hs!
Diffstat (limited to 'synapse/handlers/_base.py')
-rw-r--r-- | synapse/handlers/_base.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/handlers/_base.py b/synapse/handlers/_base.py index a8e8c4f5af..24c4c62698 100644 --- a/synapse/handlers/_base.py +++ b/synapse/handlers/_base.py @@ -267,7 +267,7 @@ class BaseHandler(object): event, context=context ) - action_generator = ActionGenerator(self.store) + action_generator = ActionGenerator(self.hs, self.store) yield action_generator.handle_event(serialize_event( event, self.clock.time_msec() )) |