Make bridge use current host

* To be able to use `webui_set_public()`, the bridge should use the current hostname instead of hardcoded `localhost`.
This commit is contained in:
Hassan DRAGA 2023-11-29 18:21:51 -05:00
parent 02361e0518
commit ff6fdb1361
2 changed files with 1290 additions and 1285 deletions

File diff suppressed because it is too large Load Diff

View File

@ -241,7 +241,8 @@ class WebuiBridge {
if (this.#bindList.includes(this.#winNum + '/')) {
this.#hasEvents = true;
}
const url = this.#secure ? 'wss://localhost' : 'ws://localhost';
const host = window.location.hostname;
const url = this.#secure ? ('wss://' + host) : ('ws://' + host);
this.#ws = new WebSocket(`${url}:${this.#port}/_webui_ws_connect`);
this.#ws.binaryType = 'arraybuffer';
this.#ws.onopen = () => {