mirror of https://github.com/morpheus65535/bazarr
Check for SSL when opening websocket connection.
This commit is contained in:
parent
368dc7e379
commit
d0ada2f16a
|
@ -211,7 +211,13 @@
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<script type="text/javascript">
|
<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) {
|
ws.onmessage = function (evt) {
|
||||||
new Noty({
|
new Noty({
|
||||||
text: evt.data,
|
text: evt.data,
|
||||||
|
|
Loading…
Reference in New Issue