From 1ab678ee75f04e41a75351f8bded9b0f7c0de996 Mon Sep 17 00:00:00 2001 From: Theo Arends <11044339+arendst@users.noreply.github.com> Date: Mon, 1 Feb 2021 11:54:50 +0100 Subject: [PATCH] Fix IrRemote_Full JSON message (#10680) --- tasmota/xdrv_05_irremote_full.ino | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasmota/xdrv_05_irremote_full.ino b/tasmota/xdrv_05_irremote_full.ino index c88c19d8a..d3fcdb1ff 100644 --- a/tasmota/xdrv_05_irremote_full.ino +++ b/tasmota/xdrv_05_irremote_full.ino @@ -236,7 +236,7 @@ String sendACJsonState(const stdAc::state_t &state) { } void sendIRJsonState(const struct decode_results &results) { - Response_P(PSTR("\"" D_JSON_IR_PROTOCOL "\":\"%s\",\"" D_JSON_IR_BITS "\":%d"), + ResponseAppend_P(PSTR("\"" D_JSON_IR_PROTOCOL "\":\"%s\",\"" D_JSON_IR_BITS "\":%d"), typeToString(results.decode_type).c_str(), results.bits);