Refresh bug fix

This commit is contained in:
Sakura-Luna 2023-04-20 21:23:56 +08:00
parent 988dd02632
commit eff00413ae
2 changed files with 4 additions and 2 deletions

View File

@ -181,7 +181,8 @@ def img2img(id_task: str, mode: int, prompt: str, negative_prompt: str, prompt_s
print(generation_info_js)
for img in processed.images:
img.already_saved_as += f'?{int(time())}'
if hasattr(img, 'already_saved_as'):
img.already_saved_as += f'?{int(time())}'
if opts.do_not_show_images:
processed.images = []

View File

@ -65,7 +65,8 @@ def txt2img(id_task: str, prompt: str, negative_prompt: str, prompt_styles, step
print(generation_info_js)
for img in processed.images:
img.already_saved_as += f'?{int(time())}'
if hasattr(img, 'already_saved_as'):
img.already_saved_as += f'?{int(time())}'
if opts.do_not_show_images:
processed.images = []