Only authenticate when password is set
This commit is contained in:
parent
5ce0d34bd8
commit
3bb560e5d0
2 changed files with 6 additions and 2 deletions
|
@ -2108,7 +2108,9 @@ INDEX = Template(r"""<!DOCTYPE html>
|
||||||
id: 1,
|
id: 1,
|
||||||
type: "subscribe_events"
|
type: "subscribe_events"
|
||||||
};
|
};
|
||||||
ws.send(JSON.stringify(auth));
|
if (document.getElementById("ws_password").value) {
|
||||||
|
ws.send(JSON.stringify(auth));
|
||||||
|
}
|
||||||
ws.send(JSON.stringify(data));
|
ws.send(JSON.stringify(data));
|
||||||
});
|
});
|
||||||
ws.onmessage = function(event) {
|
ws.onmessage = function(event) {
|
||||||
|
|
4
dev.html
4
dev.html
|
@ -2021,7 +2021,9 @@
|
||||||
id: 1,
|
id: 1,
|
||||||
type: "subscribe_events"
|
type: "subscribe_events"
|
||||||
};
|
};
|
||||||
ws.send(JSON.stringify(auth));
|
if (document.getElementById("ws_password").value) {
|
||||||
|
ws.send(JSON.stringify(auth));
|
||||||
|
}
|
||||||
ws.send(JSON.stringify(data));
|
ws.send(JSON.stringify(data));
|
||||||
});
|
});
|
||||||
ws.onmessage = function(event) {
|
ws.onmessage = function(event) {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue