Skip to content

Commit

Permalink
Fix updater nightly version check
Browse files Browse the repository at this point in the history
  • Loading branch information
OzzieIsaacs committed Nov 5, 2024
1 parent 4c3fc90 commit f0b7702
Show file tree
Hide file tree
Showing 2 changed files with 91 additions and 232 deletions.
2 changes: 1 addition & 1 deletion cps/updater.py
Original file line number Diff line number Diff line change
Expand Up @@ -614,7 +614,7 @@ def _load_remote_data(self, repository_url):
if version is False:
status['current_commit_hash'] = _(u'Unknown')
else:
status['current_commit_hash'] = version
status['current_commit_hash'] = version['version']
try:
headers = {'Accept': 'application/vnd.github.v3+json'}
r = requests.get(repository_url, headers=headers, timeout=10)
Expand Down
Loading

0 comments on commit f0b7702

Please sign in to comment.