Skip to content

Commit

Permalink
Merge b292351 into 0ea614e
Browse files Browse the repository at this point in the history
  • Loading branch information
HunsupJung authored Mar 18, 2024
2 parents 0ea614e + b292351 commit 5643137
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/clusters/thermostat-server/thermostat-server.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -440,7 +440,7 @@ MatterThermostatClusterServerPreAttributeChangedCallback(const app::ConcreteAttr
}
auto RequestedSystemMode = static_cast<SystemModeEnum>(*value);
if (ControlSequenceOfOperation > ControlSequenceOfOperationEnum::kCoolingAndHeatingWithReheat ||
RequestedSystemMode > SystemModeEnum::kFanOnly)
EnsureKnownEnumValue(RequestedSystemMode) != SystemModeEnum::kUnknownValue)
{
return imcode::InvalidValue;
}
Expand Down

0 comments on commit 5643137

Please sign in to comment.