Catch ErrorResponse json.dumps error
This commit is contained in:
parent
9397687122
commit
345b17b21f
|
@ -301,7 +301,10 @@ class MatrixClient(nio.AsyncClient):
|
||||||
|
|
||||||
async def onErrorResponse(self, resp: nio.ErrorResponse) -> None:
|
async def onErrorResponse(self, resp: nio.ErrorResponse) -> None:
|
||||||
# TODO: show something in the client
|
# TODO: show something in the client
|
||||||
|
try:
|
||||||
log.warning("%s - %s", resp, json.dumps(resp.__dict__, indent=4))
|
log.warning("%s - %s", resp, json.dumps(resp.__dict__, indent=4))
|
||||||
|
except Exception:
|
||||||
|
log.warning(repr(resp))
|
||||||
|
|
||||||
|
|
||||||
# Callbacks for nio events
|
# Callbacks for nio events
|
||||||
|
|
Loading…
Reference in New Issue
Block a user