mirror of
https://github.com/matrix-org/pantalaimon.git
synced 2025-02-09 03:18:36 -05:00
daemon: Add missing await.
This commit is contained in:
parent
aafc56b44d
commit
0ad0da2151
@ -495,7 +495,7 @@ class ProxyDaemon:
|
|||||||
status=response.status,
|
status=response.status,
|
||||||
content_type=response.content_type,
|
content_type=response.content_type,
|
||||||
headers=CORS_HEADERS,
|
headers=CORS_HEADERS,
|
||||||
body=response.read()
|
body=await response.read()
|
||||||
)
|
)
|
||||||
except ClientConnectionError as e:
|
except ClientConnectionError as e:
|
||||||
return web.Response(status=500, text=str(e))
|
return web.Response(status=500, text=str(e))
|
||||||
|
Loading…
x
Reference in New Issue
Block a user