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

Need the HTTP status code

This commit is contained in:
David Baker 2017-04-21 16:20:12 +01:00
parent 70caf49914
commit a46982cee9

View file

@ -323,7 +323,7 @@ class MatrixProxyClient(object):
result = yield self.simpleHttpClient.post_json_get_json(uri, post_json)
defer.returnValue(result)
except CodeMessageException as cme:
ex = self._tryGetMatrixError(cme.msg)
ex = self._tryGetMatrixError(cme)
if ex is not None:
raise ex
raise cme
@ -334,17 +334,17 @@ class MatrixProxyClient(object):
result = yield self.simpleHttpClient.get_json(uri, args)
defer.returnValue(result)
except CodeMessageException as cme:
ex = self._tryGetMatrixError(cme.msg)
ex = self._tryGetMatrixError(cme)
if ex is not None:
raise ex
raise cme
def _tryGetMatrixError(self, body):
def _tryGetMatrixError(self, codeMessageException):
try:
errbody = json.loads(body)
errbody = json.loads(codeMessageException.msg)
errcode = errbody['errcode']
errtext = errbody['error']
return SynapseError(cme.code, errtext, errcode)
return SynapseError(codeMessageException.code, errtext, errcode)
except:
return None