From 9c905c8babf21c90a9e65c791dcc20d680f6f81a Mon Sep 17 00:00:00 2001 From: MichaelDvP Date: Sun, 12 Jul 2026 09:46:18 +0200 Subject: [PATCH] donot fetch system_info for reset command --- src/core/system.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/core/system.cpp b/src/core/system.cpp index 3ad37f0ed..2941ebf9c 100644 --- a/src/core/system.cpp +++ b/src/core/system.cpp @@ -1952,7 +1952,9 @@ bool System::get_value_info(JsonObject output, const char * cmd) { LOG_ERROR("empty system command"); return false; } - + if (!strcmp(cmd, "reset")) { // reset is a command, not an entity + return false; + } // check for hardcoded "info"/"value" if (!strcmp(cmd, F_(info)) || !strcmp(cmd, F_(values))) { return command_info("", 0, output);