summary refs log tree commit diff
path: root/synapse/handlers/_base.py
diff options
context:
space:
mode:
authorErik Johnston <erik@matrix.org>2014-08-21 14:38:22 +0100
committerErik Johnston <erik@matrix.org>2014-08-21 14:38:22 +0100
commit1587ea26fef65157f2a35b150f01bd8035e5e785 (patch)
treeea5434b8598570dc925c7836611b74825537f6b5 /synapse/handlers/_base.py
parentMerge branch 'master' of github.com:matrix-org/synapse into develop (diff)
downloadsynapse-1587ea26fef65157f2a35b150f01bd8035e5e785.tar.xz
Wait for getting a Join in response to an invite/join dance.
Diffstat (limited to 'synapse/handlers/_base.py')
-rw-r--r--synapse/handlers/_base.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/synapse/handlers/_base.py b/synapse/handlers/_base.py
index c2f4685c92..3f07b5aa4a 100644
--- a/synapse/handlers/_base.py
+++ b/synapse/handlers/_base.py
@@ -24,4 +24,5 @@ class BaseHandler(object):
         self.notifier = hs.get_notifier()
         self.room_lock = hs.get_room_lock_manager()
         self.state_handler = hs.get_state_handler()
+        self.distributor = hs.get_distributor()
         self.hs = hs