Fix NormalizeVideoLatentStart node out on non-op

This commit is contained in:
kijai 2025-12-06 02:15:47 +02:00
parent 4848793aac
commit f28e0c257c

View File

@ -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()