This commit is contained in:
kijai 2025-03-13 11:10:06 +02:00
commit 1016861aec

View File

@ -449,7 +449,7 @@ app.registerExtension({
if (this.outputs[0].type !== '*' && this.outputs[0].links) {
this.outputs[0].links.filter(linkId => {
const link = node.graph.links[linkId];
return link && (link.type !== this.outputs[0].type && link.type !== '*');
return link && (!link.type.split(",").includes(this.outputs[0].type) && link.type !== '*');
}).forEach(linkId => {
node.graph.removeLink(linkId);
});