From 73e7a7bf19ba0dd4699192cf9d80242ade1d83af Mon Sep 17 00:00:00 2001 From: NoobishSVK Date: Thu, 7 Nov 2024 17:07:26 +0100 Subject: [PATCH] wizard password hotfix --- web/js/confighandler.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/js/confighandler.js b/web/js/confighandler.js index e6a07bb..9622065 100644 --- a/web/js/confighandler.js +++ b/web/js/confighandler.js @@ -6,7 +6,7 @@ $(document).ready(function() { function submitConfig() { updateConfigData(configData); - if (!configData.password || !configData.password.adminPass) { + if ($("#password-adminPass").val().length < 1) { alert('You need to fill in the admin password before continuing further.'); return; }