@arcanejs/toolkit 6.0.0 → 6.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -27589,6 +27589,7 @@ body {
|
|
|
27589
27589
|
console.log("initializing websocket");
|
|
27590
27590
|
const wsUrl = new URL(window.location.href);
|
|
27591
27591
|
wsUrl.protocol = wsUrl.protocol === "https:" ? "wss:" : "ws:";
|
|
27592
|
+
wsUrl.hash = "";
|
|
27592
27593
|
const ws = new WebSocket(wsUrl.href);
|
|
27593
27594
|
ws.onmessage = (event) => {
|
|
27594
27595
|
handleMessage(JSON.parse(event.data));
|