@@ -475,7 +475,7 @@ class IngestServerAPI implements IngestRestAPI {
475475
476476 await runIngestOperation ( studio . _id , IngestJobs . UpdateRundown , {
477477 rundownExternalId : ingestRundown . externalId ,
478- ingestRundown : ingestRundown ,
478+ ingestRundown : { ... ingestRundown , playlistExternalId : playlistId } ,
479479 isCreateAction : true ,
480480 rundownSource : {
481481 type : 'restApi' ,
@@ -520,7 +520,7 @@ class IngestServerAPI implements IngestRestAPI {
520520
521521 return runIngestOperation ( studio . _id , IngestJobs . UpdateRundown , {
522522 rundownExternalId : ingestRundown . externalId ,
523- ingestRundown : ingestRundown ,
523+ ingestRundown : { ... ingestRundown , playlistExternalId : playlist . externalId } ,
524524 isCreateAction : true ,
525525 rundownSource : {
526526 type : 'restApi' ,
@@ -560,7 +560,7 @@ class IngestServerAPI implements IngestRestAPI {
560560
561561 await runIngestOperation ( studio . _id , IngestJobs . UpdateRundown , {
562562 rundownExternalId : existingRundown . externalId ,
563- ingestRundown : ingestRundown ,
563+ ingestRundown : { ... ingestRundown , playlistExternalId : playlist . externalId } ,
564564 isCreateAction : true ,
565565 rundownSource : {
566566 type : 'restApi' ,
0 commit comments