[millheat] Possibly wrong use of isHoliday instead of canChangeTemp (#12413)
* Possibly wrong use of isHoliday instaed of canChangeTemp Signed-off-by: Arne Seime <arne.seime@gmail.com>
This commit is contained in:
parent
29cba86a23
commit
38a14b821d
|
@ -38,7 +38,7 @@ public class Heater {
|
||||||
name = dto.deviceName;
|
name = dto.deviceName;
|
||||||
macAddress = dto.macAddress;
|
macAddress = dto.macAddress;
|
||||||
heatingActive = dto.heaterFlag;
|
heatingActive = dto.heaterFlag;
|
||||||
canChangeTemp = dto.holiday;
|
canChangeTemp = dto.canChangeTemp;
|
||||||
subDomain = dto.subDomainId;
|
subDomain = dto.subDomainId;
|
||||||
currentTemp = (int) dto.currentTemp;
|
currentTemp = (int) dto.currentTemp;
|
||||||
setTargetTemp(dto.holidayTemp);
|
setTargetTemp(dto.holidayTemp);
|
||||||
|
|
Loading…
Reference in New Issue