mirror of
https://github.com/tiennm99/ccs.git
synced 2026-07-16 20:17:45 +00:00
fix(ui): use wss:// for WebSocket on HTTPS pages (#315)
This commit is contained in:
@@ -69,7 +69,8 @@ export function useWebSocket() {
|
||||
}
|
||||
|
||||
setStatus('connecting');
|
||||
const ws = new WebSocket(`ws://${window.location.host}`);
|
||||
const protocol = window.location.protocol === 'https:' ? 'wss:' : 'ws:';
|
||||
const ws = new WebSocket(`${protocol}//${window.location.host}`);
|
||||
wsRef.current = ws;
|
||||
|
||||
ws.onopen = () => {
|
||||
|
||||
Reference in New Issue
Block a user