summary refs log tree commit diff
path: root/synapse/federation/transaction_queue.py
diff options
context:
space:
mode:
authorErik Johnston <erikj@jki.re>2017-05-16 17:40:47 +0100
committerGitHub <noreply@github.com>2017-05-16 17:40:47 +0100
commit7c69849a0d2766357c4a39ca6d966e09c76fac9a (patch)
tree3961fc28fb3033b933b1164df01874469634e05c /synapse/federation/transaction_queue.py
parentMerge pull request #2226 from matrix-org/erikj/domain_from_id (diff)
parentMake presence use cached users/hosts in room (diff)
downloadsynapse-7c69849a0d2766357c4a39ca6d966e09c76fac9a.tar.xz
Merge pull request #2227 from matrix-org/erikj/presence_caches
Make presence use cached users/hosts in room
Diffstat (limited to 'synapse/federation/transaction_queue.py')
-rw-r--r--synapse/federation/transaction_queue.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/federation/transaction_queue.py b/synapse/federation/transaction_queue.py
index 695f1a7375..a15198e05d 100644
--- a/synapse/federation/transaction_queue.py
+++ b/synapse/federation/transaction_queue.py
@@ -285,7 +285,7 @@ class TransactionQueue(object):
         Args:
             states (list(UserPresenceState))
         """
-        hosts_and_states = yield get_interested_remotes(self.store, states)
+        hosts_and_states = yield get_interested_remotes(self.store, states, self.state)
 
         for destinations, states in hosts_and_states:
             for destination in destinations: