Skip to content

Commit

Permalink
Fix typo.
Browse files Browse the repository at this point in the history
  • Loading branch information
comfyanonymous committed Nov 24, 2023
1 parent 42dfae6 commit 02ffbb2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 2 additions & 2 deletions comfy_extras/nodes_video_model.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ def load_checkpoint(self, ckpt_name, output_vae=True, output_clip=True):
return (out[0], out[3], out[2])


class SDV_img2vid_Conditioning:
class SVD_img2vid_Conditioning:
@classmethod
def INPUT_TYPES(s):
return {"required": { "clip_vision": ("CLIP_VISION",),
Expand Down Expand Up @@ -80,7 +80,7 @@ def linear_cfg(args):

NODE_CLASS_MAPPINGS = {
"ImageOnlyCheckpointLoader": ImageOnlyCheckpointLoader,
"SDV_img2vid_Conditioning": SDV_img2vid_Conditioning,
"SVD_img2vid_Conditioning": SVD_img2vid_Conditioning,
"VideoLinearCFGGuidance": VideoLinearCFGGuidance,
}

Expand Down
1 change: 1 addition & 0 deletions web/scripts/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -1523,6 +1523,7 @@ export class ComfyApp {
// 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
if (n.type == "SDV_img2vid_Conditioning") n.type = "SVD_img2vid_Conditioning"; //typo fix

// Find missing node types
if (!(n.type in LiteGraph.registered_node_types)) {
Expand Down

0 comments on commit 02ffbb2

Please sign in to comment.