0
0
Fork 1
mirror of https://mau.dev/maunium/synapse.git synced 2024-06-18 10:38:21 +02:00

Actually call get_room_state

This commit is contained in:
Erik Johnston 2016-08-03 15:04:29 +01:00
parent 520ee9bd2c
commit 4c56bedee3

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