Fix URL detection for port resolution
This commit is contained in:
parent
c7344e1bd9
commit
911b907f85
|
@ -1150,7 +1150,7 @@ $(function () {
|
|||
|
||||
const isSecure = globalThis.location.protocol == "https:";
|
||||
const port =
|
||||
window.location.hostname == "www.multiplayerpiano.com" ? 443 : 8443;
|
||||
window.location.hostname == "www.multiplayerpiano.dev" ? 443 : 8443;
|
||||
const gClient = new Client(
|
||||
(isSecure ? "wss://" : "ws://") + window.location.hostname + ":" + port
|
||||
);
|
||||
|
|
Loading…
Reference in New Issue