From a44b8d0581f0bbfd4aad10dde4a388e4761feca4 Mon Sep 17 00:00:00 2001 From: filtered <176114999+webfiltered@users.noreply.github.com> Date: Sun, 23 Mar 2025 08:50:18 +1100 Subject: [PATCH] Fix bypass links on delete gives up after corrupt link (#831) Bypass links will now continue to attempt to connect other links, instead of silently giving up on the first corrupt link it finds. --- src/LGraphNode.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/LGraphNode.ts b/src/LGraphNode.ts index 1563551fe..d55fcf67d 100644 --- a/src/LGraphNode.ts +++ b/src/LGraphNode.ts @@ -3312,7 +3312,7 @@ export class LGraphNode implements Positionable, IPinnable, IColorable { for (const outLink of outLinks) { const outNode = graph.getNodeById(outLink.target_id) - if (!outNode) return + if (!outNode) continue const result = inNode.connect( inLink.origin_slot,