mirror of
https://github.com/AUTOMATIC1111/stable-diffusion-webui.git
synced 2024-06-07 21:20:49 +00:00
Merge pull request #4778 from leppie/fix_unbounded_prompt_growth
Fix unbounded prompt growth/determinism in scripts that loop
This commit is contained in:
commit
e35d8b493f
@ -453,6 +453,8 @@ def process_images_inner(p: StableDiffusionProcessing) -> Processed:
|
|||||||
modules.sd_hijack.model_hijack.clear_comments()
|
modules.sd_hijack.model_hijack.clear_comments()
|
||||||
|
|
||||||
comments = {}
|
comments = {}
|
||||||
|
prompt_tmp = p.prompt
|
||||||
|
negative_prompt_tmp = p.negative_prompt
|
||||||
|
|
||||||
shared.prompt_styles.apply_styles(p)
|
shared.prompt_styles.apply_styles(p)
|
||||||
|
|
||||||
@ -599,6 +601,9 @@ def process_images_inner(p: StableDiffusionProcessing) -> Processed:
|
|||||||
if p.scripts is not None:
|
if p.scripts is not None:
|
||||||
p.scripts.postprocess(p, res)
|
p.scripts.postprocess(p, res)
|
||||||
|
|
||||||
|
p.prompt = prompt_tmp
|
||||||
|
p.negative_prompt = negative_prompt_tmp
|
||||||
|
|
||||||
return res
|
return res
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user