Skip to content

Commit 6f1afc4

Browse files
committed
fix: ignore externalId when ingestNotifyPartExternalId is set
1 parent b5f9136 commit 6f1afc4

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

meteor/server/publications/ingestStatus/createIngestRundownStatus.ts

+2
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,7 @@ export function createIngestRundownStatus(
6161
$or: [
6262
{
6363
externalId: nrcsPart.data.externalId,
64+
ingestNotifyPartExternalId: { $exists: false },
6465
},
6566
{
6667
ingestNotifyPartExternalId: nrcsPart.data.externalId,
@@ -98,6 +99,7 @@ function findPartInstancesForIngestPart(
9899
$or: [
99100
{
100101
'part.externalId': partExternalId,
102+
'part.ingestNotifyPartExternalId': { $exists: false },
101103
},
102104
{
103105
'part.ingestNotifyPartExternalId': partExternalId,

0 commit comments

Comments
 (0)