summaryrefslogtreecommitdiff
path: root/op_crates/websocket/01_websocket.js
diff options
context:
space:
mode:
Diffstat (limited to 'op_crates/websocket/01_websocket.js')
-rw-r--r--op_crates/websocket/01_websocket.js21
1 files changed, 17 insertions, 4 deletions
diff --git a/op_crates/websocket/01_websocket.js b/op_crates/websocket/01_websocket.js
index 4a303679b..67fc0e481 100644
--- a/op_crates/websocket/01_websocket.js
+++ b/op_crates/websocket/01_websocket.js
@@ -25,6 +25,19 @@
}
}
+ /**
+ * Tries to close the resource (and ignores BadResource errors).
+ * @param {number} rid
+ */
+ function tryClose(rid) {
+ try {
+ core.close(rid);
+ } catch (err) {
+ // Ignore error if the socket has already been closed.
+ if (!(err instanceof Deno.errors.BadResource)) throw err;
+ }
+ }
+
const handlerSymbol = Symbol("eventHandlers");
function makeWrappedHandler(handler) {
function wrappedHandler(...args) {
@@ -125,7 +138,7 @@
const event = new CloseEvent("close");
event.target = this;
this.dispatchEvent(event);
- core.close(this.#rid);
+ tryClose(this.#rid);
});
} else {
this.#readyState = OPEN;
@@ -289,7 +302,7 @@
});
event.target = this;
this.dispatchEvent(event);
- core.close(this.#rid);
+ tryClose(this.#rid);
});
}
}
@@ -350,7 +363,7 @@
});
event.target = this;
this.dispatchEvent(event);
- core.close(this.#rid);
+ tryClose(this.#rid);
break;
}
@@ -365,7 +378,7 @@
const closeEv = new CloseEvent("close");
closeEv.target = this;
this.dispatchEvent(closeEv);
- core.close(this.#rid);
+ tryClose(this.#rid);
break;
}