Skip to content

Commit

Permalink
Fix an issue where the default play mode didn't register after the ch…
Browse files Browse the repository at this point in the history
…ange to indexes in the caspar plugin

Signed-off-by: Axel Boberg <[email protected]>
  • Loading branch information
axelboberg committed Mar 5, 2024
1 parent 6041187 commit 181c7ec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugins/types/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ const PLAY_HANDLERS = {
on the group's play mode
*/
'bridge.types.group': item => {
if (item?.data?.playMode === GROUP_PLAY_MODES.all) {
if (!item?.data?.playMode || item?.data?.playMode === GROUP_PLAY_MODES.all) {
for (const child of item.children) {
bridge.items.playItem(child)
}
Expand Down

0 comments on commit 181c7ec

Please sign in to comment.