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.
1 parent 6c23cca commit 536f664Copy full SHA for 536f664
packages/corelib/src/playout/infinites.ts
@@ -239,13 +239,16 @@ export function getPlayheadTrackingInfinitesForPart(
239
markPieceInstanceAsContinuation(p, instance)
240
241
if (p.infinite) {
242
- // This was copied from before, so we know we can force the time to 0
243
- instance.piece = {
244
- ...instance.piece,
245
- enable: {
246
- start: 0,
247
- },
+ if (!instance.piece.enable.isAbsolute) {
+ // This was copied from before, so we know we can force the time to 0
+ instance.piece = {
+ ...instance.piece,
+ enable: {
+ start: 0,
248
+ },
249
+ }
250
}
251
+
252
instance.infinite = {
253
...p.infinite,
254
infiniteInstanceIndex: p.infinite.infiniteInstanceIndex + 1,
0 commit comments