Merge pull request #12024 from AUTOMATIC1111/fix-check-for-updates-status-always-unknown-

fix check for updates status always "unknown"
This commit is contained in:
AUTOMATIC1111 2023-07-26 07:45:48 +03:00
parent 99ef3b6c52
commit e16eb3d0cb
1 changed files with 1 additions and 1 deletions

View File

@ -61,7 +61,7 @@ class Extension:
self.from_dict(d)
except FileNotFoundError:
pass
self.status = 'unknown'
self.status = 'unknown' if self.status == '' else self.status
def do_read_info_from_repo(self):
repo = None