fix check for updates status always "unknown"

This commit is contained in:
w-e-w 2023-07-26 13:43:38 +09:00
parent d0bf509fa1
commit b8a903efbe

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