Skip to content

Commit

Permalink
correct state updates for fan+light
Browse files Browse the repository at this point in the history
Signed-off-by: Cody Cutrer <[email protected]>
  • Loading branch information
ccutrer committed Nov 25, 2024
1 parent c5a0c9a commit ca90669
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -851,7 +851,7 @@ private void updateFanState(String channelId, State state) {
if (isFanOnly) {
updateState(channelId, state);
} else {
updateState(new ChannelUID(this.getThing().getUID(), CHANNEL_GROUP_LIGHT, channelId), state);
updateState(new ChannelUID(this.getThing().getUID(), CHANNEL_GROUP_FAN, channelId), state);
}
}

Expand Down

0 comments on commit ca90669

Please sign in to comment.