Skip to content

Commit

Permalink
fixed latest version in check_for_updates
Browse files Browse the repository at this point in the history
  • Loading branch information
brandonzorn committed Oct 20, 2024
1 parent 3a9bb09 commit 6d8f2c7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ def check_for_updates(self) -> str | None:
if not response:
return None
latest_version = None
for release in response:
for release in reversed(response):
version = release["tag_name"]
if APP_BRANCH in version:
latest_version = version
Expand Down

0 comments on commit 6d8f2c7

Please sign in to comment.