Skip to content

Commit

Permalink
fix: use the full path to the output image
Browse files Browse the repository at this point in the history
  • Loading branch information
TimPietrusky committed Mar 19, 2024
1 parent 201f64e commit 4b48ef0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/rp_handler.py
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,7 @@ def process_output_images(outputs, job_id):
for node_id, node_output in outputs.items():
if "images" in node_output:
for image in node_output["images"]:
output_images = image["filename"]
output_images = os.path.join(image["subfolder"], image["filename"])

print(f"runpod-worker-comfy - image generation is done")

Expand Down

0 comments on commit 4b48ef0

Please sign in to comment.