wip: fix websocket connection when using an alternate port

This commit is contained in:
David Gauchard 2023-12-13 17:23:36 +01:00
parent 8b64b185a4
commit a56ea12eb0
1 changed files with 1 additions and 1 deletions

2
data/js/controls.js vendored
View File

@ -231,7 +231,7 @@ function start() {
port != 80 ||
port != 443
) {
websock = new WebSocket( "ws://" + location + "/ws" );
websock = new WebSocket( "ws://" + location + ":" + port + "/ws" );
} else {
websock = new WebSocket("ws://" + location + "/ws");
}