From 3e795423041bc2a0be6c20d43fc16cd55fae466b Mon Sep 17 00:00:00 2001 From: "Adrian A. Baumann" Date: Wed, 24 Jun 2026 00:19:53 +0200 Subject: [PATCH] Remove authentication requirement from handleSet function --- src/main.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/src/main.cpp b/src/main.cpp index e35af09..619a6de 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -586,7 +586,6 @@ static void handleConfig() { } static void handleSet() { - if (!requireAuth()) { Serial.println("[HTTP] GET /set -> 401"); return; } if (!server.hasArg("i") || !server.hasArg("v")) { server.send(400); Serial.println("[HTTP] GET /set missing args"); return; } int idx = server.arg("i").toInt(); float val = server.arg("v").toFloat();