mirror of
https://github.com/comfyanonymous/ComfyUI.git
synced 2026-01-27 14:50:20 +08:00
The first image in the workflow should be outputted, not the last.
This commit is contained in:
parent
a1fee05e60
commit
da21da1d8c
@ -662,7 +662,7 @@ class PromptServer(ExecutorToClientProgress):
|
|||||||
output_images.append(image_tuple)
|
output_images.append(image_tuple)
|
||||||
|
|
||||||
if len(output_images) > 0:
|
if len(output_images) > 0:
|
||||||
main_image = output_images[-1]
|
main_image = output_images[0]
|
||||||
filename = main_image["filename"]
|
filename = main_image["filename"]
|
||||||
digest_headers_ = {
|
digest_headers_ = {
|
||||||
"Digest": f"SHA-256={content_digest}",
|
"Digest": f"SHA-256={content_digest}",
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user