mirror of
https://github.com/lllyasviel/stable-diffusion-webui-forge.git
synced 2026-02-10 09:59:57 +00:00
Use name instead of hash in xyz_grid
X/Y/Z grid was still using the old hash, prone to collisions. This changes it to use the name instead. Should fix #10521.
This commit is contained in:
@@ -86,7 +86,7 @@ def apply_checkpoint(p, x, xs):
|
||||
info = modules.sd_models.get_closet_checkpoint_match(x)
|
||||
if info is None:
|
||||
raise RuntimeError(f"Unknown checkpoint: {x}")
|
||||
p.override_settings['sd_model_checkpoint'] = info.hash
|
||||
p.override_settings['sd_model_checkpoint'] = info.name
|
||||
|
||||
|
||||
def confirm_checkpoints(p, xs):
|
||||
|
||||
Reference in New Issue
Block a user