File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed
packages/job-worker/src/playout/timeline Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -106,7 +106,7 @@ export function getPieceEnableInsidePart(
106106 if ( partTimings . toPartPostroll ) {
107107 if ( ! pieceEnable . duration ) {
108108 // make sure that the control object is shortened correctly
109- pieceEnable . duration = `#${ partGroupId } - ${ partTimings . toPartPostroll } `
109+ pieceEnable . end = `#${ partGroupId } - ${ partTimings . toPartPostroll } `
110110 }
111111 }
112112
Original file line number Diff line number Diff line change @@ -146,7 +146,8 @@ export function buildTimelineObjsForRundown(
146146 // If there is a valid autonext out of the current part, then calculate the duration
147147 currentPartEnable . duration =
148148 partInstancesInfo . current . partInstance . part . expectedDuration +
149- partInstancesInfo . current . calculatedTimings . toPartDelay
149+ partInstancesInfo . current . calculatedTimings . toPartDelay +
150+ partInstancesInfo . current . calculatedTimings . toPartPostroll // autonext should have the postroll added to it to not confuse the timeline
150151 }
151152 const currentPartGroup = createPartGroup ( partInstancesInfo . current . partInstance , currentPartEnable )
152153
You can’t perform that action at this time.
0 commit comments