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.
This commit is contained in:
filtered
2025-03-23 08:50:18 +11:00
committed by GitHub
parent ba7f870e0f
commit a44b8d0581

View File

@@ -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,