diff options
author | AUTOMATIC1111 <16777216c@gmail.com> | 2023-08-27 06:26:18 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-08-27 06:26:18 +0000 |
commit | e3174a1a426bb379335616d16c244e7542279add (patch) | |
tree | 51f6d5894a3b531eb03f97c46c1ff735757f70ae | |
parent | 07878c6ca8cef3d8ef5c5a37a075979ccc1e9f5b (diff) | |
parent | d888490f85d6a027cb1a2f0edd468294e058581c (diff) | |
download | stable-diffusion-webui-gfx803-e3174a1a426bb379335616d16c244e7542279add.tar.gz stable-diffusion-webui-gfx803-e3174a1a426bb379335616d16c244e7542279add.tar.bz2 stable-diffusion-webui-gfx803-e3174a1a426bb379335616d16c244e7542279add.zip |
Merge pull request #12797 from Madrawn/vae_resolve_bug
Small typo: vae resolve bug
-rw-r--r-- | modules/sd_vae.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/sd_vae.py b/modules/sd_vae.py index 669097da..31306d8b 100644 --- a/modules/sd_vae.py +++ b/modules/sd_vae.py @@ -159,7 +159,7 @@ def resolve_vae_from_user_metadata(checkpoint_file) -> VaeResolution: def resolve_vae_near_checkpoint(checkpoint_file) -> VaeResolution: vae_near_checkpoint = find_vae_near_checkpoint(checkpoint_file) - if vae_near_checkpoint is not None and (not shared.opts.sd_vae_overrides_per_model_preferences or is_automatic): + if vae_near_checkpoint is not None and (not shared.opts.sd_vae_overrides_per_model_preferences or is_automatic()): return VaeResolution(vae_near_checkpoint, 'found near the checkpoint') return VaeResolution(resolved=False) |