mirror of
https://github.com/webui-dev/webui
synced 2025-03-28 21:13:17 +00:00
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:
parent
02361e0518
commit
ff6fdb1361
File diff suppressed because it is too large
Load Diff
@ -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 = () => {
|
||||
|
Loading…
x
Reference in New Issue
Block a user