1
0
mirror of https://github.com/esphome/esphome.git synced 2025-03-14 06:38:17 +00:00

Update web_server.cpp

nolint crud
This commit is contained in:
Nick Kinnan 2025-01-14 21:50:45 -08:00 committed by GitHub
parent e80451c56d
commit 2f65bfa0c7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1655,7 +1655,7 @@ void WebServer::handle_alarm_control_panel_request(AsyncWebServerRequest *reques
auto call = obj->make_call();
if (request->hasParam("code")) {
call.set_code(request->getParam("code")->value().c_str());
call.set_code(request->getParam("code")->value().c_str()); // NOLINT
}
if (match.method == "disarm") {