fix issue with switching back to checkpoint that had its checksum calculated during runtime mentioned in #7506

This commit is contained in:
AUTOMATIC 2023-02-04 15:23:16 +03:00
parent 40e51fd6ef
commit 3e0f9a7543
1 changed files with 3 additions and 2 deletions

View File

@ -65,10 +65,11 @@ class CheckpointInfo:
self.shorthash = self.sha256[0:10]
if self.shorthash not in self.ids:
self.ids += [self.shorthash, self.sha256]
self.register()
self.ids += [self.shorthash, self.sha256, f'{self.name} [{self.shorthash}]']
checkpoints_list.pop(self.title)
self.title = f'{self.name} [{self.shorthash}]'
self.register()
return self.shorthash