Use 3001 instead of 1001 when destroying a websocket.

This commit is contained in:
Jason Knight 2022-03-17 18:36:35 -06:00
parent 756178d342
commit b659cfbd53

View file

@ -135,7 +135,7 @@ const GodotWebSocket = {
if (!ref) {
return;
}
GodotWebSocket.close(p_id, 1001, '');
GodotWebSocket.close(p_id, 3001, 'destroyed');
IDHandler.remove(p_id);
ref.onopen = null;
ref.onmessage = null;