This commit is contained in:
choelzl 2022-02-09 13:04:21 +01:00
parent c670c4e349
commit bc15dc49d6
Signed by: sora
GPG Key ID: A362EA0491E2EEA0

View File

@ -508,7 +508,7 @@ $(function() {
helpers.log('Connection established with the websocket.', helpers.LOG_TYPE.FORCE); helpers.log('Connection established with the websocket.', helpers.LOG_TYPE.FORCE);
// Auth with the socket. // Auth with the socket.
sendToSocket({ sendToSocket({
authenticate: local_auth || getAuth() authenticate: localStorage.getItem('lauth') || getAuth()
}); });
}; };