From 0b57f6c79cb5ff169209b06e8bd8ab0daf5d2808 Mon Sep 17 00:00:00 2001 From: 4NK CI Bot Date: Fri, 19 Sep 2025 18:10:59 +0000 Subject: [PATCH] =?UTF-8?q?fix:=20correction=20de=20l'URL=20WebSocket=20po?= =?UTF-8?q?ur=20utiliser=20WSS=20(WebSocket=20Secure)=20au=20lieu=20de=20W?= =?UTF-8?q?S=20pour=20la=20compatibilit=C3=A9=20HTTPS?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/services/service.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/services/service.ts b/src/services/service.ts index 83efaaa..7fcb7e0 100755 --- a/src/services/service.ts +++ b/src/services/service.ts @@ -12,7 +12,7 @@ export const U32_MAX = 4294967295; const ORIGIN = typeof window !== 'undefined' ? window.location.origin : ''; const BASEURL = import.meta.env.VITE_BASEURL || ORIGIN; -const BOOTSTRAPURL = [import.meta.env.VITE_BOOTSTRAPURL || `ws://${BASEURL}/ws/`]; +const BOOTSTRAPURL = [import.meta.env.VITE_BOOTSTRAPURL || `wss://${BASEURL}/ws/`]; const STORAGEURL = import.meta.env.VITE_STORAGEURL || `${BASEURL}`; const BLINDBITURL = import.meta.env.VITE_BLINDBITURL || `${BASEURL}`; const DEFAULTAMOUNT = 1000n;