off by one branch

This commit is contained in:
Phil Genera 2020-06-06 08:54:39 -04:00
parent a36cb30a89
commit bf9259ce0a

View File

@ -246,9 +246,9 @@ void MitsubishiHeatPump::hpSettingsChanged() {
this->mode = climate::CLIMATE_MODE_COOL;
} else if (strcmp(currentSettings.mode, "FAN") == 0) {
this->mode = climate::CLIMATE_MODE_FAN_ONLY;
this->action = climate::CLIMATE_ACTION_FAN;
} else if (strcmp(currentSettings.mode, "AUTO") == 0) {
this->mode = climate::CLIMATE_MODE_AUTO;
this->action = climate::CLIMATE_ACTION_FAN;
} else {
ESP_LOGW(
TAG,