From e2625a40558d89389248bfe77b3fd561b3892ea2 Mon Sep 17 00:00:00 2001 From: AustinMroz Date: Thu, 29 Jan 2026 16:25:16 -0800 Subject: [PATCH] Fix paste-with-links breaking autogrow connections (#8442) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The extra `linf` check was made in 878c8c0f39. I'm no longer able to replicate the cloning bug the check was introduced for. ┆Issue is synchronized with this [Notion page](https://www.notion.so/PR-8442-Fix-paste-with-links-breaking-autogrow-connections-2f76d73d3650817aa99cc3b9e4e6412c) by [Unito](https://www.unito.io) --- src/core/graph/widgets/dynamicWidgets.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/graph/widgets/dynamicWidgets.ts b/src/core/graph/widgets/dynamicWidgets.ts index 7e3f7fd71..3058e8131 100644 --- a/src/core/graph/widgets/dynamicWidgets.ts +++ b/src/core/graph/widgets/dynamicWidgets.ts @@ -557,7 +557,7 @@ function withComfyAutogrow(node: LGraphNode): asserts node is AutogrowNode { if (!autogrowGroup) return if (app.configuringGraph && input.widget) ensureWidgetForInput(node, input) - if (iscon && linf) { + if (iscon) { if (swappingConnection || !linf) return autogrowInputConnected(slot, this) } else {