From 7a1ce54248793fabde03a18d4259cfebd1206198 Mon Sep 17 00:00:00 2001 From: Djuri Baars Date: Tue, 10 Sep 2024 10:21:02 +0200 Subject: [PATCH] Fix WebUI credentials not being saved --- src/lib/webserver.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/webserver.cpp b/src/lib/webserver.cpp index 97441d4..bad307f 100644 --- a/src/lib/webserver.cpp +++ b/src/lib/webserver.cpp @@ -490,7 +490,7 @@ void onApiSettingsPatch(AsyncWebServerRequest *request, JsonVariant &json) settings["timePerScreen"].as() * 60); } - String strSettings[] = {"hostnamePrefix", "mempoolInstance", "nostrPubKey", "nostrRelay", "bitaxeHostname", "nostrZapPubkey"}; + String strSettings[] = {"hostnamePrefix", "mempoolInstance", "nostrPubKey", "nostrRelay", "bitaxeHostname", "nostrZapPubkey", "httpAuthUser", "httpAuthPass"}; for (String setting : strSettings) {