We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3dacffa commit beec6e8Copy full SHA for beec6e8
homeassistant/components/hassio/ingress.py
@@ -303,9 +303,9 @@ async def _websocket_forward(
303
elif msg.type is aiohttp.WSMsgType.BINARY:
304
await ws_to.send_bytes(msg.data)
305
elif msg.type is aiohttp.WSMsgType.PING:
306
- await ws_to.ping()
+ await ws_to.ping(msg.data)
307
elif msg.type is aiohttp.WSMsgType.PONG:
308
- await ws_to.pong()
+ await ws_to.pong(msg.data)
309
elif ws_to.closed:
310
await ws_to.close(code=ws_to.close_code, message=msg.extra) # type: ignore[arg-type]
311
except RuntimeError:
0 commit comments