mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2025-02-03 16:19:57 -05:00
Don't error for 3xx responses
This commit is contained in:
parent
2e165295b7
commit
a1595cec78
@ -145,7 +145,7 @@ class SimpleHttpClient(object):
|
|||||||
|
|
||||||
body = yield preserve_context_over_fn(readBody, response)
|
body = yield preserve_context_over_fn(readBody, response)
|
||||||
|
|
||||||
if response.code / 100 != 2:
|
if response.code / 100 >= 4:
|
||||||
raise CodeMessageException(response.code, body)
|
raise CodeMessageException(response.code, body)
|
||||||
|
|
||||||
defer.returnValue(json.loads(body))
|
defer.returnValue(json.loads(body))
|
||||||
|
Loading…
x
Reference in New Issue
Block a user