diff options
author | Erik Johnston <erik@matrix.org> | 2016-08-03 15:04:29 +0100 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2016-08-03 15:04:29 +0100 |
commit | 4c56bedee3bb63d7035fca4a1a092b11de0b18cc (patch) | |
tree | ff29c366de4629205662291f78faf9298bbec2db /synapse/federation | |
parent | Fix syntax error (diff) | |
download | synapse-4c56bedee3bb63d7035fca4a1a092b11de0b18cc.tar.xz |
Actually call get_room_state
Diffstat (limited to 'synapse/federation')
-rw-r--r-- | synapse/federation/federation_client.py | 4 |
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"] ] |