From f28e0c257cc851341ee796888fc0c1d94dd2a76b Mon Sep 17 00:00:00 2001 From: kijai <40791699+kijai@users.noreply.github.com> Date: Sat, 6 Dec 2025 02:15:47 +0200 Subject: [PATCH] Fix NormalizeVideoLatentStart node out on non-op --- comfy_extras/nodes_kandinsky5.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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()