fix websocket over secure connection (#542)

* fix https connection

* explicity dependency

Former-commit-id: 0876deb1e9
This commit is contained in:
Hayden 2023-08-24 06:28:56 -08:00 committed by GitHub
parent 0b021e898f
commit 94e81d14fa
3 changed files with 10 additions and 1 deletions

View file

@ -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");