summary refs log tree commit diff
path: root/synapse/handlers/_base.py
diff options
context:
space:
mode:
authorDavid Baker <dave@matrix.org>2015-12-21 15:28:54 +0000
committerDavid Baker <dave@matrix.org>2015-12-21 15:28:54 +0000
commitf73f154ec2c8ffdc49270d3ccaf3053f915800f3 (patch)
tree2f428c3e2b2a3980d70c0b8f923b998ecc0a6239 /synapse/handlers/_base.py
parentpep8 (diff)
downloadsynapse-f73f154ec2c8ffdc49270d3ccaf3053f915800f3.tar.xz
Only run pushers for users on this hs!
Diffstat (limited to 'synapse/handlers/_base.py')
-rw-r--r--synapse/handlers/_base.py2
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()
         ))