diff options
author | w-e-w <40751091+w-e-w@users.noreply.github.com> | 2024-01-16 11:27:29 +0000 |
---|---|---|
committer | w-e-w <40751091+w-e-w@users.noreply.github.com> | 2024-01-17 17:39:42 +0000 |
commit | e1dfd452c0447e729a7341c434b4aab6063aa654 (patch) | |
tree | 7e09665d2938f0dee693c8e43c980e32e8267bcc /modules/txt2img.py | |
parent | 6916de5c0bd8df3835d450caa3327d1924db081c (diff) | |
download | stable-diffusion-webui-gfx803-e1dfd452c0447e729a7341c434b4aab6063aa654.tar.gz stable-diffusion-webui-gfx803-e1dfd452c0447e729a7341c434b4aab6063aa654.tar.bz2 stable-diffusion-webui-gfx803-e1dfd452c0447e729a7341c434b4aab6063aa654.zip |
parse_generation_parameters with no skip_fields
Diffstat (limited to 'modules/txt2img.py')
-rw-r--r-- | modules/txt2img.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/txt2img.py b/modules/txt2img.py index e617cb1c..92a160d6 100644 --- a/modules/txt2img.py +++ b/modules/txt2img.py @@ -70,7 +70,7 @@ def txt2img_upscale(id_task: str, request: gr.Request, gallery, gallery_index, g image_info = gallery[gallery_index] if 0 <= gallery_index < len(gallery) else gallery[0]
p.firstpass_image = infotext_utils.image_from_url_text(image_info)
- parameters = parse_generation_parameters(geninfo.get('infotexts')[gallery_index])
+ parameters = parse_generation_parameters(geninfo.get('infotexts')[gallery_index], [])
p.seed = parameters.get('Seed', -1)
p.subseed = parameters.get('Variation seed', -1)
|