mirror of
https://github.com/comfyanonymous/ComfyUI.git
synced 2026-06-14 11:59:21 +08:00
not to destroy single image
This commit is contained in:
parent
1d0b024bf2
commit
123562c466
@ -460,7 +460,9 @@ class ImageProcessingNode(io.ComfyNode):
|
|||||||
def execute(cls, images, **kwargs):
|
def execute(cls, images, **kwargs):
|
||||||
"""Execute the node. Routes to _process or _group_process based on mode."""
|
"""Execute the node. Routes to _process or _group_process based on mode."""
|
||||||
is_group = cls._detect_processing_mode()
|
is_group = cls._detect_processing_mode()
|
||||||
images = cls._ensure_image_list(images)
|
|
||||||
|
if is_group:
|
||||||
|
images = cls._ensure_image_list(images)
|
||||||
|
|
||||||
# Extract scalar values from lists for parameters
|
# Extract scalar values from lists for parameters
|
||||||
params = {}
|
params = {}
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user