Check for SSL when opening websocket connection.

pull/292/head
morpheus65535 6 years ago
parent 368dc7e379
commit d0ada2f16a

@ -211,7 +211,13 @@
</script>
<script type="text/javascript">
var ws = new WebSocket("ws://" + window.location.host + "{{base_url}}websocket");
if (location.protocol != 'https:')
{
var ws = new WebSocket("ws://" + window.location.host + "{{base_url}}websocket");
} else {
var ws = new WebSocket("wss://" + window.location.host + "{{base_url}}websocket");
}
ws.onmessage = function (evt) {
new Noty({
text: evt.data,

Loading…
Cancel
Save