From 1b50c8ec0267fb33ba94a38c632b3c1deb0ccb7e Mon Sep 17 00:00:00 2001 From: DigiH Date: Thu, 5 Dec 2024 15:33:28 +0100 Subject: [PATCH] [WEBUI] Fix for TH1 external probe in display routine (#2127) Fix for TH1 external probe in display routine only actually showing when connected. --- main/ZwebUI.ino | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main/ZwebUI.ino b/main/ZwebUI.ino index 022e2f1a88..bf769602bf 100644 --- a/main/ZwebUI.ino +++ b/main/ZwebUI.ino @@ -2054,7 +2054,7 @@ void webUIPubPrint(const char* topicori, JsonObject& data) { } } - if (data.containsKey("extprobe")) { + if (data.containsKey("extprobe") && data["extprobe"]) { property++; properties[property] = " ext. probe"; }