From bc15dc49d6c4aa737b932faa25a9f8007d925489 Mon Sep 17 00:00:00 2001 From: choelzl Date: Wed, 9 Feb 2022 13:04:21 +0100 Subject: [PATCH] WIP --- web/js/socketWrapper.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/js/socketWrapper.js b/web/js/socketWrapper.js index 06f97e5..3552185 100644 --- a/web/js/socketWrapper.js +++ b/web/js/socketWrapper.js @@ -508,7 +508,7 @@ $(function() { helpers.log('Connection established with the websocket.', helpers.LOG_TYPE.FORCE); // Auth with the socket. sendToSocket({ - authenticate: local_auth || getAuth() + authenticate: localStorage.getItem('lauth') || getAuth() }); };