Skip to content

Commit

Permalink
Fix incorrect steam version being taken
Browse files Browse the repository at this point in the history
  • Loading branch information
suchmememanyskill committed Oct 6, 2024
1 parent e6d616a commit 86bd266
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion css_mappings.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ def __get_target_branch() -> str:

def __get_same_branch_versions(data : dict) -> list[str]:
target_branch = __get_target_branch()
return [x for x in data['versions'] if data['versions'][x] == target_branch]
return [x for x in data['versions'] if data['versions'][x] == target_branch][::-1]

def __get_target_steam_version(data : dict) -> str|None:
local_steam_version = get_steam_version()
Expand Down

0 comments on commit 86bd266

Please sign in to comment.