From c6777041c773965d461f2f1952c6cef57c0cce39 Mon Sep 17 00:00:00 2001 From: Mint de Wit Date: Tue, 8 Oct 2024 08:40:05 +0000 Subject: [PATCH] fix: rundown reset resets quickloop markers --- .../src/playout/model/implementation/PlayoutModelImpl.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/packages/job-worker/src/playout/model/implementation/PlayoutModelImpl.ts b/packages/job-worker/src/playout/model/implementation/PlayoutModelImpl.ts index 09651a09b8..b7f0651097 100644 --- a/packages/job-worker/src/playout/model/implementation/PlayoutModelImpl.ts +++ b/packages/job-worker/src/playout/model/implementation/PlayoutModelImpl.ts @@ -593,7 +593,9 @@ export class PlayoutModelImpl extends PlayoutModelReadonlyImpl implements Playou if (regenerateActivationId) this.playlistImpl.activationId = getRandomId() - if (this.playlistImpl.quickLoop?.running) this.playlistImpl.quickLoop.running = false + // reset quickloop: + this.setQuickLoopMarker('start', null) + this.setQuickLoopMarker('end', null) this.#playlistHasChanged = true }