Browse Source

Fix typo.

pull/1597/head
comfyanonymous 1 year ago
parent
commit
77c124c5a1
  1. 1
      web/scripts/app.js

1
web/scripts/app.js

@ -1322,6 +1322,7 @@ export class ComfyApp {
for (let n of graphData.nodes) {
// Patch T2IAdapterLoader to ControlNetLoader since they are the same node now
if (n.type == "T2IAdapterLoader") n.type = "ControlNetLoader";
if (n.type == "ConditioningAverage ") n.type = "ConditioningAverage"; //typo fix
// Find missing node types
if (!(n.type in LiteGraph.registered_node_types)) {

Loading…
Cancel
Save