mirror of
https://github.com/AUTOMATIC1111/stable-diffusion-webui.git
synced 2025-04-29 00:09:01 +08:00
fix issue with switching back to checkpoint that had its checksum calculated during runtime mentioned in #7506
This commit is contained in:
parent
40e51fd6ef
commit
3e0f9a7543
@ -65,10 +65,11 @@ class CheckpointInfo:
|
|||||||
self.shorthash = self.sha256[0:10]
|
self.shorthash = self.sha256[0:10]
|
||||||
|
|
||||||
if self.shorthash not in self.ids:
|
if self.shorthash not in self.ids:
|
||||||
self.ids += [self.shorthash, self.sha256]
|
self.ids += [self.shorthash, self.sha256, f'{self.name} [{self.shorthash}]']
|
||||||
self.register()
|
|
||||||
|
|
||||||
|
checkpoints_list.pop(self.title)
|
||||||
self.title = f'{self.name} [{self.shorthash}]'
|
self.title = f'{self.name} [{self.shorthash}]'
|
||||||
|
self.register()
|
||||||
|
|
||||||
return self.shorthash
|
return self.shorthash
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user