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);