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
1 changed files with 3 additions and 2 deletions
|
@ -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…
Reference in a new issue