the new option to hide images from the results panel (to fix the big delay after generation) needs to be checked for because the array will be empty, giving an index out of range error otherwise
fix is on first line below:
if(opts.do_not_show_images == False): # need to apply this line
# Get the image stored in the first index
img2img_images = img2img_result[0]
# Add the new image(s) to our main output
processed.images.append(img2img_images[0])
the new option to hide images from the results panel (to fix the big delay after generation) needs to be checked for because the array will be empty, giving an
index out of range
error otherwisefix is on first line below:
you can see the cause of this here: https://github.com/AUTOMATIC1111/stable-diffusion-webui/blob/c8045c5ad4f99deb3a19add06e0457de1df62b05/modules/img2img.py#L134