diff --git a/comfy_extras/nodes_kandinsky5.py b/comfy_extras/nodes_kandinsky5.py index bba41e541..9cb234be1 100644 --- a/comfy_extras/nodes_kandinsky5.py +++ b/comfy_extras/nodes_kandinsky5.py @@ -86,7 +86,7 @@ class NormalizeVideoLatentStart(io.ComfyNode): @classmethod def execute(cls, latent, start_frame_count, reference_frame_count) -> io.NodeOutput: if latent["samples"].shape[2] <= 1: - return latent + return io.NodeOutput(latent) s = latent.copy() samples = latent["samples"].clone()