From f85cd54cb4a1c54d835374d83dba4f8f7b89d2d1 Mon Sep 17 00:00:00 2001 From: crowlKats <13135287+crowlKats@users.noreply.github.com> Date: Tue, 5 Jan 2021 13:37:02 +0100 Subject: fix(runtime/websocket): respond to ping with pong (#8974) --- runtime/js/27_websocket.js | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'runtime/js') diff --git a/runtime/js/27_websocket.js b/runtime/js/27_websocket.js index 60428c24d..9f86bdbed 100644 --- a/runtime/js/27_websocket.js +++ b/runtime/js/27_websocket.js @@ -167,6 +167,7 @@ this.#bufferedAmount += ta.size; core.jsonOpAsync("op_ws_send", { rid: this.#rid, + kind: "binary", }, ta).then(() => { this.#bufferedAmount -= ta.size; }); @@ -193,6 +194,7 @@ this.#bufferedAmount += d.size; core.jsonOpAsync("op_ws_send", { rid: this.#rid, + kind: "text", text: string, }).then(() => { this.#bufferedAmount -= d.size; @@ -265,6 +267,13 @@ event.target = this; this.dispatchEvent(event); + this.#eventLoop(); + } else if (message.type === "ping") { + core.jsonOpAsync("op_ws_send", { + rid: this.#rid, + kind: "pong", + }); + this.#eventLoop(); } else if (message.type === "close") { this.#readyState = CLOSED; -- cgit v1.2.3