From a3c2d27807269913b46b746dab943669e9cfc2a1 Mon Sep 17 00:00:00 2001 From: Simone Ferretti Date: Mon, 19 Aug 2024 17:11:54 +0200 Subject: [PATCH] fix: move to wss --- client/src/main.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/src/main.js b/client/src/main.js index c2cc107..eec4e73 100644 --- a/client/src/main.js +++ b/client/src/main.js @@ -23,7 +23,7 @@ function openConnection() { connectionButton.textContent = ""; connectionButton.setAttribute("aria-busy", "true"); - const endpoint = "ws://chat.rilae.com"; + const endpoint = "wss://chat.rilae.com"; const socket = new WebSocket(endpoint);