Commit 225eb1b1 authored by AUTOMATIC1111's avatar AUTOMATIC1111 Committed by GitHub

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

fix check for updates status always "unknown"
parents d0bf509f b8a903ef
......@@ -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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment