bugfix on deleting node connected to Set node

This commit is contained in:
kijai 2025-05-13 17:10:22 +03:00
parent bec42252c6
commit 5dcda71011

View File

@ -96,10 +96,11 @@ app.registerExtension({
}
}
if (slotType == 2 && !isChangeConnect) {
this.outputs[slot].type = '*';
this.outputs[slot].name = '*';
}
if (this.outputs && this.outputs[slot]) {
this.outputs[slot].type = '*';
this.outputs[slot].name = '*';
}
}
//On Connect
if (link_info && node.graph && slotType == 1 && isChangeConnect) {
const fromNode = node.graph._nodes.find((otherNode) => otherNode.id == link_info.origin_id);