Need the HTTP status code

pull/2147/head
David Baker 2017-04-21 16:20:12 +01:00
parent 70caf49914
commit a46982cee9
1 changed files with 5 additions and 5 deletions

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