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

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)

View file

@ -231,8 +231,8 @@ class FederationServer(FederationBase):
)
defer.returnValue((200, {
"pdus": [pdu.event_id for pdu in pdus],
"auth_chain": [pdu.event_id for pdu in auth_chain],
"pdu_ids": [pdu.event_id for pdu in pdus],
"auth_chain_ids": [pdu.event_id for pdu in auth_chain],
}))
@defer.inlineCallbacks