From 422657fbf79546bc43e5a92696f074419ad8f6a7 Mon Sep 17 00:00:00 2001 From: MichaelDvP <59284019+MichaelDvP@users.noreply.github.com> Date: Mon, 27 Jun 2022 14:26:56 +0200 Subject: [PATCH] fix #550 typo summersetmode/summermode --- src/devices/thermostat.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/devices/thermostat.cpp b/src/devices/thermostat.cpp index 8bcdabbf9..14655bc0e 100644 --- a/src/devices/thermostat.cpp +++ b/src/devices/thermostat.cpp @@ -1022,11 +1022,11 @@ void Thermostat::process_RC300Summer2(std::shared_ptr telegram) return; } if (hc->statusbyte & 1) { - has_update(telegram, hc->summermode, 0); + has_update(telegram, hc->summersetmode, 0); has_update(hc->hpoperatingmode, EMS_VALUE_UINT_NOTSET); } else { has_update(telegram, hc->hpoperatingmode, 0); - has_update(hc->summermode, EMS_VALUE_UINT_NOTSET); + has_update(hc->summersetmode, EMS_VALUE_UINT_NOTSET); } has_update(telegram, hc->summertemp, 1); }