From f79675d5c7876875065fc29504eb0590678d67d3 Mon Sep 17 00:00:00 2001 From: Jan Oberhauser Date: Thu, 9 Jun 2022 08:59:22 +0200 Subject: [PATCH] fix(core): Fix issue with multi input nodes --- packages/core/src/WorkflowExecute.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/core/src/WorkflowExecute.ts b/packages/core/src/WorkflowExecute.ts index 177ca9efca9ac..214498a71507c 100644 --- a/packages/core/src/WorkflowExecute.ts +++ b/packages/core/src/WorkflowExecute.ts @@ -326,7 +326,7 @@ export class WorkflowExecute { // Node has multiple inputs let nodeWasWaiting = true; - if (this.runExecutionData.executionData!.waitingExecutionSource === null) { + if (!this.runExecutionData.executionData!.waitingExecutionSource) { this.runExecutionData.executionData!.waitingExecutionSource = {}; }