Skip to content

Commit

Permalink
fix: allow BucketAdlibAction to access PackageInfos SOFIE-2655 (#1052)
Browse files Browse the repository at this point in the history
  • Loading branch information
Julusian authored Oct 16, 2023
1 parent 07724cb commit e2ff354
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion packages/job-worker/src/playout/adlibAction.ts
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,11 @@ export async function handleExecuteAdlibAction(
const watchedPackages = await WatchedPackagesHelper.create(context, context.studio._id, {
pieceId: data.actionDocId,
fromPieceType: {
$in: [ExpectedPackageDBType.ADLIB_ACTION, ExpectedPackageDBType.BASELINE_ADLIB_ACTION],
$in: [
ExpectedPackageDBType.ADLIB_ACTION,
ExpectedPackageDBType.BASELINE_ADLIB_ACTION,
ExpectedPackageDBType.BUCKET_ADLIB_ACTION,
],
},
})

Expand Down

0 comments on commit e2ff354

Please sign in to comment.