We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents dac27bb + 031b96e commit d46adb1Copy full SHA for d46adb1
packages/job-worker/src/playout/timeline/multi-gateway.ts
@@ -173,9 +173,9 @@ function deNowifyCurrentPieces(
173
const objMetadata = obj.metaData as Partial<PieceTimelineMetadata> | undefined
174
if (objMetadata?.isPieceTimeline && !Array.isArray(obj.enable) && obj.enable.start === 'now') {
175
if (obj.inGroup === timingContext.currentPartGroup.id) {
176
- obj.enable = { start: nowInPart }
+ obj.enable = { ...obj.enable, start: nowInPart }
177
} else if (!obj.inGroup) {
178
- obj.enable = { start: targetNowTime }
+ obj.enable = { ...obj.enable, start: targetNowTime }
179
}
180
181
0 commit comments