Restored missing port identifier for custom port support.

This commit is contained in:
MartinMueller2003 2023-12-14 08:32:59 -05:00
parent 8b64b185a4
commit 46ad206a49
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");
}