Skip to content

Commit

Permalink
fix: clean up input_slot definition
Browse files Browse the repository at this point in the history
  • Loading branch information
Saelmala committed Sep 17, 2024
1 parent ab1c93a commit 4575dbc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/api/manager/workflow.ts
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ async function connectIngestSources(
for (const source of sources) {
input_slot =
productionSources.find((s) => s._id === source._id.toString())
?.input_slot || 5;
?.input_slot || input_slot + 1;
const ingestUuid = await getUuidFromIngestName(
source.ingest_name,
false
Expand Down

0 comments on commit 4575dbc

Please sign in to comment.