mirror of
https://github.com/matrix-org/pantalaimon.git
synced 2025-07-15 02:59:35 -04:00
daemon: Add missing await.
This commit is contained in:
parent
aafc56b44d
commit
0ad0da2151
1 changed files with 1 additions and 1 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue