homebridge-tasmota-control 1.6.15-beta.18 → 1.6.15-beta.19
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/mielhvac.js +1 -1
package/package.json
CHANGED
package/src/mielhvac.js
CHANGED
|
@@ -541,7 +541,7 @@ class MiElHvac extends EventEmitter {
|
|
|
541
541
|
} else if (fanSpeedMap[mode]) {
|
|
542
542
|
state = power && fanSpeed === fanSpeedMap[mode];
|
|
543
543
|
} else if (airDirMap[mode]) {
|
|
544
|
-
state = power &&
|
|
544
|
+
state = power && airDirection === airDirMap[mode];
|
|
545
545
|
} else if (prohibitMap[mode]) {
|
|
546
546
|
state = power && prohibit === prohibitMap[mode];
|
|
547
547
|
} else if (purifyMap[mode]) {
|