Commit 3d614dde authored by comfyanonymous's avatar comfyanonymous
Browse files

Fix bug with reroutes and bypass.

parent d7638c47
...@@ -1356,7 +1356,7 @@ export class ComfyApp { ...@@ -1356,7 +1356,7 @@ export class ComfyApp {
if (parent.isVirtualNode) { if (parent.isVirtualNode) {
link = parent.getInputLink(link.origin_slot); link = parent.getInputLink(link.origin_slot);
if (link) { if (link) {
parent = parent.getInputNode(link.origin_slot); parent = parent.getInputNode(link.target_slot);
if (parent) { if (parent) {
found = true; found = true;
} }
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment