Rename fields to _ids

This commit is contained in:
Erik Johnston 2016-08-03 17:19:15 +01:00
parent bcc9cda8ca
commit edb33eb163
2 changed files with 4 additions and 4 deletions

View file

@ -322,8 +322,8 @@ class FederationClient(FederationBase):
destination, room_id, event_id=event_id,
)
state_event_ids = result["pdus"]
auth_event_ids = result.get("auth_chain", [])
state_event_ids = result["pdu_ids"]
auth_event_ids = result.get("auth_chain_ids", [])
fetched_events, failed_to_fetch = yield self.get_events(
[destination], room_id, set(state_event_ids + auth_event_ids)