Skip to content

Commit

Permalink
Fix setPlayed on BAPS in channel 0 setting all channels.
Browse files Browse the repository at this point in the history
  • Loading branch information
mstratford authored Dec 6, 2021
1 parent 7cfd48b commit 238da52
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/showplanner/state.ts
Original file line number Diff line number Diff line change
Expand Up @@ -278,7 +278,7 @@ export const setItemPlayedAt = (
player = getState().showplan.plan![idx].channel;
}

if (player) {
if (player != null) {
sendBAPSicleChannel({
channel: player,
command: playedAt ? "SETPLAYED" : "RESETPLAYED",
Expand Down

0 comments on commit 238da52

Please sign in to comment.