From 62946c22b06800964d912b194a2678ed9518cc26 Mon Sep 17 00:00:00 2001 From: Barbudor Date: Tue, 31 Aug 2021 18:01:01 +0200 Subject: [PATCH] refactor in single append --- tasmota/xsns_69_opentherm.ino | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/tasmota/xsns_69_opentherm.ino b/tasmota/xsns_69_opentherm.ino index ed24d9ca0..095a1909a 100644 --- a/tasmota/xsns_69_opentherm.ino +++ b/tasmota/xsns_69_opentherm.ino @@ -235,9 +235,7 @@ void sns_opentherm_stat(bool json) if (json) { - ResponseAppend_P(PSTR(",\"OPENTHERM\":{")); - ResponseAppend_P(PSTR("\"conn\":\"%s\","), statusStr); - ResponseAppend_P(PSTR("\"settings\":%d"), Settings->ot_flags); + ResponseAppend_P(PSTR(",\"OPENTHERM\":{\"conn\":\"%s\",\"settings\":%d"), statusStr, Settings->ot_flags); sns_opentherm_dump_telemetry(); ResponseJsonEnd(); #ifdef USE_WEBSERVER