diff options
author | AUTOMATIC1111 <16777216c@gmail.com> | 2023-12-04 10:11:00 +0000 |
---|---|---|
committer | AUTOMATIC1111 <16777216c@gmail.com> | 2023-12-04 10:11:12 +0000 |
commit | 81105ee0135f1c475920bf44d3a04fc181aed29e (patch) | |
tree | 8d08c76eb92eb10888bf99360d55c2419ac48061 /modules/ui_postprocessing.py | |
parent | 24dae9bc4cc03a30236957d9c35d37aed79f6f5d (diff) | |
download | stable-diffusion-webui-gfx803-81105ee0135f1c475920bf44d3a04fc181aed29e.tar.gz stable-diffusion-webui-gfx803-81105ee0135f1c475920bf44d3a04fc181aed29e.tar.bz2 stable-diffusion-webui-gfx803-81105ee0135f1c475920bf44d3a04fc181aed29e.zip |
repair old handler for postprocessing API in a way that doesn't break interface
Diffstat (limited to 'modules/ui_postprocessing.py')
-rw-r--r-- | modules/ui_postprocessing.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/ui_postprocessing.py b/modules/ui_postprocessing.py index fbad0800..13d888e4 100644 --- a/modules/ui_postprocessing.py +++ b/modules/ui_postprocessing.py @@ -35,7 +35,7 @@ def create_ui(): tab_batch_dir.select(fn=lambda: 2, inputs=[], outputs=[tab_index])
submit.click(
- fn=call_queue.wrap_gradio_gpu_call(postprocessing.run_postprocessing, extra_outputs=[None, '']),
+ fn=call_queue.wrap_gradio_gpu_call(postprocessing.run_postprocessing_webui, extra_outputs=[None, '']),
_js="submit_extras",
inputs=[
dummy_component,
|