mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 01:56:46 +00:00
fix(core): Optimize connection type lookups (#17585)
This commit is contained in:
@@ -169,7 +169,7 @@ function resolveParameterImpl<T = IDataObject>(
|
||||
let contextNode = activeNode;
|
||||
|
||||
if (activeNode) {
|
||||
contextNode = workflow.getParentMainInputNode(activeNode);
|
||||
contextNode = workflow.getParentMainInputNode(activeNode) ?? null;
|
||||
}
|
||||
|
||||
const workflowRunData = executionData?.data?.resultData.runData ?? null;
|
||||
|
||||
Reference in New Issue
Block a user