Skip to content

Commit

Permalink
Merge pull request AUTOMATIC1111#12024 from AUTOMATIC1111/fix-check-f…
Browse files Browse the repository at this point in the history
…or-updates-status-always-unknown-

fix check for updates status always "unknown"
  • Loading branch information
AUTOMATIC1111 committed Jul 26, 2023
1 parent 99ef3b6 commit e16eb3d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/extensions.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ def read_from_repo():
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
Expand Down

0 comments on commit e16eb3d

Please sign in to comment.