Skip to content

Commit 96664f5

Browse files
Web interface bug fix for multiple inputs from the same node.
1 parent 1d84a44 commit 96664f5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

webshit/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -306,7 +306,7 @@
306306
// console.log(c_nodes, z);
307307
if (c_nodes) {
308308
for (let zz in c_nodes) {
309-
if (c_nodes[zz].id == n.id) {
309+
if (c_nodes[zz].id == n.id && parent_node.outputs[z].links.includes(n.inputs[y].link)) {
310310
input_[n.inputs[y].name] = [String(parent_node.id), parseInt(z)];
311311
break;
312312
}

0 commit comments

Comments
 (0)