summary refs log tree commit diff
path: root/synapse/federation
diff options
context:
space:
mode:
authorErik Johnston <erik@matrix.org>2016-08-03 15:04:29 +0100
committerErik Johnston <erik@matrix.org>2016-08-03 15:04:29 +0100
commit4c56bedee3bb63d7035fca4a1a092b11de0b18cc (patch)
treeff29c366de4629205662291f78faf9298bbec2db /synapse/federation
parentFix syntax error (diff)
downloadsynapse-4c56bedee3bb63d7035fca4a1a092b11de0b18cc.tar.xz
Actually call get_room_state
Diffstat (limited to 'synapse/federation')
-rw-r--r--synapse/federation/federation_client.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/synapse/federation/federation_client.py b/synapse/federation/federation_client.py

index 6c626cf12c..7eadcdd28c 100644 --- a/synapse/federation/federation_client.py +++ b/synapse/federation/federation_client.py
@@ -348,6 +348,10 @@ class FederationClient(FederationBase): else: raise e + result = yield self.transport_layer.get_room_state( + destination, room_id, event_id=event_id, + ) + pdus = [ self.event_from_pdu_json(p, outlier=True) for p in result["pdus"] ]