fix(core): Fix another possible issue with multi input nodes

This commit is contained in:
Jan Oberhauser 2022-06-09 09:10:17 +02:00
parent 91e99046b0
commit e88fab5ee2

View file

@ -422,7 +422,10 @@ export class WorkflowExecute {
],
} as IExecuteData;
if (this.runExecutionData.executionData!.waitingExecutionSource !== null) {
if (
this.runExecutionData.executionData!.waitingExecutionSource !== null &&
this.runExecutionData.executionData!.waitingExecutionSource !== undefined
) {
executionStackItem.source =
this.runExecutionData.executionData!.waitingExecutionSource[connectionData.node][
runIndex