Actually call get_room_state

pull/979/head
Erik Johnston 2016-08-03 15:04:29 +01:00
parent 520ee9bd2c
commit 4c56bedee3
1 changed files with 4 additions and 0 deletions

View File

@ -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"]
]