From d2aee662fdb8dd6f4d4c56c972e30b8cbf484939 Mon Sep 17 00:00:00 2001 From: Paul Blacknell Date: Fri, 15 Sep 2023 21:16:27 +0100 Subject: [PATCH] fix: add command data to cmnd response (#19524) --- tasmota/tasmota_xsns_sensor/xsns_90_hrg15.ino | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tasmota/tasmota_xsns_sensor/xsns_90_hrg15.ino b/tasmota/tasmota_xsns_sensor/xsns_90_hrg15.ino index 24012d992..c83d92238 100644 --- a/tasmota/tasmota_xsns_sensor/xsns_90_hrg15.ino +++ b/tasmota/tasmota_xsns_sensor/xsns_90_hrg15.ino @@ -242,7 +242,9 @@ bool Rg15Command(void) { Rg15.init_step = 5; // Perform RG-15 init } - ResponseCmndDone(); + ResponseCmndIdxChar(XdrvMailbox.data); + } else { + ResponseCmndIdxError(); } return serviced;