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

Fallback to /state/ on both 400 and 404

This commit is contained in:
Erik Johnston 2016-08-05 10:24:23 +01:00
parent a2b7102eea
commit 1515d1b581

View file

@ -343,7 +343,7 @@ class FederationClient(FederationBase):
defer.returnValue((pdus, auth_chain))
except HttpResponseException as e:
if e.code == 400:
if e.code == 400 or e.code == 404:
logger.info("Failed to use get_room_state_ids API, falling back")
else:
raise e