mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-20 03:12:15 +00:00
fix(core): Handle connections for missing nodes in a workflow (#13362)
This commit is contained in:
committed by
GitHub
parent
6ef9ae1862
commit
1e5feb195d
@@ -508,6 +508,9 @@ export class Workflow {
|
||||
return;
|
||||
}
|
||||
|
||||
// Ignore connections for nodes that don't exist in this workflow
|
||||
if (!(connection.node in this.nodes)) return;
|
||||
|
||||
addNodes = this.getHighestNode(connection.node, undefined, checkedNodes);
|
||||
|
||||
if (addNodes.length === 0) {
|
||||
|
||||
Reference in New Issue
Block a user