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:
Kamil Krzyżanowski 2023-05-18 21:38:30 +02:00
parent 89f9faa633
commit 161b2944b8

View File

@ -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):