forked from mirrors/homebox
fix websocket over secure connection (#542)
* fix https connection
* explicity dependency
Former-commit-id: 0876deb1e9
This commit is contained in:
parent
0b021e898f
commit
94e81d14fa
3 changed files with 10 additions and 1 deletions
|
@ -13,7 +13,12 @@ let socket: WebSocket | null = null;
|
|||
const listeners = new Map<ServerEvent, (() => void)[]>();
|
||||
|
||||
function connect(onmessage: (m: EventMessage) => void) {
|
||||
const ws = new WebSocket(`ws://${window.location.host}/api/v1/ws/events`);
|
||||
let protocol = "ws";
|
||||
if (window.location.protocol === "https:") {
|
||||
protocol = "wss";
|
||||
}
|
||||
|
||||
const ws = new WebSocket(`${protocol}://${window.location.host}/api/v1/ws/events`);
|
||||
|
||||
ws.onopen = () => {
|
||||
console.debug("connected to server");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue