Skip to content

Commit

Permalink
Fix bug in processing trigger channels (#880)
Browse files Browse the repository at this point in the history
Signed-off-by: Chris Jackson <[email protected]>
  • Loading branch information
cdjackson authored Nov 19, 2024
1 parent 5e713ea commit 8193316
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -833,7 +833,7 @@ public void triggerChannel(ChannelUID channel, String event) {
return;
}
logger.debug("{}: Triggering ZigBee channel {} with event {}", nodeIeeeAddress, channel, event);
triggerChannel(channel, event);
super.triggerChannel(channel, event);
if (nodeInitialised) {
updateStatus(ThingStatus.ONLINE);
}
Expand Down

0 comments on commit 8193316

Please sign in to comment.