Commit 077617e8 authored by comfyanonymous's avatar comfyanonymous
Browse files

Fix bypassed nodes with no inputs.

parent 19fbab6c
...@@ -1362,20 +1362,23 @@ export class ComfyApp { ...@@ -1362,20 +1362,23 @@ export class ComfyApp {
} }
} }
} else if (link && parent.mode === 4) { } else if (link && parent.mode === 4) {
let all_inputs = [link.origin_slot].concat(parent.inputs) let all_inputs = [link.origin_slot];
for (let parent_input in all_inputs) { if (parent.inputs) {
if (parent.inputs[parent_input].type === node.inputs[i].type) { all_inputs = all_inputs.concat(Object.keys(parent.inputs))
link = parent.getInputLink(parent_input); for (let parent_input in all_inputs) {
if (link) { parent_input = all_inputs[parent_input];
parent = parent.getInputNode(parent_input); if (parent.inputs[parent_input].type === node.inputs[i].type) {
link = parent.getInputLink(parent_input);
if (link) {
parent = parent.getInputNode(parent_input);
}
found = true;
break;
} }
found = true;
break;
} }
} }
} }
if (!found) { if (!found) {
break; break;
} }
......
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