From 055f6e29562e5ffd3d81068d00a0cf3d8a203ac0 Mon Sep 17 00:00:00 2001 From: Sean Sube Date: Tue, 9 Jan 2024 09:21:51 -0600 Subject: [PATCH] fix controlnet --- api/onnx_web/diffusers/run.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/onnx_web/diffusers/run.py b/api/onnx_web/diffusers/run.py index 0947c85f..6f145d9c 100644 --- a/api/onnx_web/diffusers/run.py +++ b/api/onnx_web/diffusers/run.py @@ -242,7 +242,7 @@ def run_img2img_pipeline( ) if source_filter is not None and source_filter != "none": - images.push_image(source) + images.push_image(source, ImageMetadata.unknown_image()) save_result(server, images, worker.job)