Improve WebSocket fallback logic
Use window.location.hostname and port if available, otherwise fallback to localhost:8000. Co-authored-by: Chris Margach <hcagramc@gmail.com>
This commit is contained in:
parent
2399487e45
commit
cfd5905fd4
1 changed files with 3 additions and 1 deletions
|
|
@ -315,7 +315,9 @@
|
||||||
const linesTranscriptDiv = document.getElementById("linesTranscript");
|
const linesTranscriptDiv = document.getElementById("linesTranscript");
|
||||||
const timerElement = document.querySelector(".timer");
|
const timerElement = document.querySelector(".timer");
|
||||||
|
|
||||||
const defaultWebSocketUrl = `ws://${window.location.hostname}:${window.location.port}/asr`;
|
const host = window.location.hostname || "localhost";
|
||||||
|
const port = window.location.port || "8000";
|
||||||
|
const defaultWebSocketUrl = `ws://${host}:${port}/asr`;
|
||||||
websocketInput.value = defaultWebSocketUrl;
|
websocketInput.value = defaultWebSocketUrl;
|
||||||
websocketUrl = defaultWebSocketUrl;
|
websocketUrl = defaultWebSocketUrl;
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue