Check for SSL when opening websocket connection.

This commit is contained in:
morpheus65535 2018-12-31 23:46:33 -05:00
parent 368dc7e379
commit d0ada2f16a

View file

@ -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,