Skip to content
Snippets Groups Projects
Commit ab67f068 authored by stuebinm's avatar stuebinm
Browse files

server: don't hardcode the websocket domain/protocol

parent 7403b270
No related branches found
No related tags found
No related merge requests found
......@@ -75,7 +75,8 @@ instance ToHtml JobStatus where
p_ "you should probably ping an admin about this or sth"
where
autoReloadScript = script_
"let ws = new WebSocket('ws://localhost:8080' + window.location.pathname + 'realtime');\n\
"let proto = window.location.protocol === 'https://' ? 'wss' : 'ws://';\
\let ws = new WebSocket(proto + window.location.host + window.location.pathname + 'realtime');\n\
\ws.onmessage = (event) => {\n\
\ let resp = JSON.parse(event.data);\n\
\ if (resp == 'RelintPending') {\n\
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment