From b09b650c1dc6ac73c158535f40241e920421fa9e Mon Sep 17 00:00:00 2001 From: proddy Date: Sat, 3 Jul 2021 10:44:15 +0200 Subject: [PATCH] remove # from dallas in api/system/info --- src/system.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/system.cpp b/src/system.cpp index d7c37cf22..9d9a0b203 100644 --- a/src/system.cpp +++ b/src/system.cpp @@ -916,9 +916,9 @@ bool System::command_info(const char * value, const int8_t id, JsonObject & json node["MQTT publish fails"] = Mqtt::publish_fails(); } if (EMSESP::dallas_enabled()) { - node["#dallas sensors"] = EMSESP::sensor_devices().size(); - node["#dallas reads"] = EMSESP::sensor_reads(); - node["#dallas fails"] = EMSESP::sensor_fails(); + node["dallas sensors"] = EMSESP::sensor_devices().size(); + node["dallas reads"] = EMSESP::sensor_reads(); + node["dallas fails"] = EMSESP::sensor_fails(); } }