diff options
author | Won-Kyu Park <wkpark@gmail.com> | 2023-10-13 17:39:04 +0000 |
---|---|---|
committer | Won-Kyu Park <wkpark@gmail.com> | 2023-10-13 17:45:09 +0000 |
commit | fbc8d213546047d8970b92809e15b33e8a1301be (patch) | |
tree | e985f02ee900e0b5d54910121d561861634e3dcd /modules/processing.py | |
parent | 7d60076b8b275771a1aa98f017aff845ef68d964 (diff) | |
download | stable-diffusion-webui-gfx803-fbc8d213546047d8970b92809e15b33e8a1301be.tar.gz stable-diffusion-webui-gfx803-fbc8d213546047d8970b92809e15b33e8a1301be.tar.bz2 stable-diffusion-webui-gfx803-fbc8d213546047d8970b92809e15b33e8a1301be.zip |
fix IndexError: list index out of range error interrupted while postprocess
Diffstat (limited to 'modules/processing.py')
-rw-r--r-- | modules/processing.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/modules/processing.py b/modules/processing.py index 36bc94f7..df037fb0 100644 --- a/modules/processing.py +++ b/modules/processing.py @@ -820,6 +820,7 @@ def process_images_inner(p: StableDiffusionProcessing) -> Processed: state.skipped = False
if state.interrupted:
+ infotexts.append(Processed(p, []).infotext(p, 0))
break
sd_models.reload_model_weights() # model can be changed for example by refiner
|