From f880d058edd2a22fe989f351a86380dc002d5983 Mon Sep 17 00:00:00 2001 From: Javier Arigita Date: Wed, 20 May 2020 22:21:25 +0200 Subject: [PATCH] Bugfix --- tasmota/xdrv_39_thermostat.ino | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasmota/xdrv_39_thermostat.ino b/tasmota/xdrv_39_thermostat.ino index f250a5c62..79e842dc5 100644 --- a/tasmota/xdrv_39_thermostat.ino +++ b/tasmota/xdrv_39_thermostat.ino @@ -1969,7 +1969,7 @@ void CmndEnableOutputSet(void) Thermostat[ctr_output].status.enable_output = value; } } - ResponseCmndNumber((int)Thermostat[ctr_output].diag.diagnostic_mode); + ResponseCmndNumber((int)Thermostat[ctr_output].status.enable_output); } }