mirror of
https://github.com/comfyanonymous/ComfyUI.git
synced 2026-01-24 21:30:15 +08:00
Fix NormalizeVideoLatentStart node out on non-op
This commit is contained in:
parent
4848793aac
commit
f28e0c257c
@ -86,7 +86,7 @@ class NormalizeVideoLatentStart(io.ComfyNode):
|
|||||||
@classmethod
|
@classmethod
|
||||||
def execute(cls, latent, start_frame_count, reference_frame_count) -> io.NodeOutput:
|
def execute(cls, latent, start_frame_count, reference_frame_count) -> io.NodeOutput:
|
||||||
if latent["samples"].shape[2] <= 1:
|
if latent["samples"].shape[2] <= 1:
|
||||||
return latent
|
return io.NodeOutput(latent)
|
||||||
s = latent.copy()
|
s = latent.copy()
|
||||||
samples = latent["samples"].clone()
|
samples = latent["samples"].clone()
|
||||||
|
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user