Fix setPlayed on BAPS in channel 0 setting all channels.
This commit is contained in:
parent
7cfd48b003
commit
238da52d94
1 changed files with 1 additions and 1 deletions
|
@ -278,7 +278,7 @@ export const setItemPlayedAt = (
|
||||||
player = getState().showplan.plan![idx].channel;
|
player = getState().showplan.plan![idx].channel;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (player) {
|
if (player != null) {
|
||||||
sendBAPSicleChannel({
|
sendBAPSicleChannel({
|
||||||
channel: player,
|
channel: player,
|
||||||
command: playedAt ? "SETPLAYED" : "RESETPLAYED",
|
command: playedAt ? "SETPLAYED" : "RESETPLAYED",
|
||||||
|
|
Loading…
Reference in a new issue