Skip to content

Commit

Permalink
Fixed a bug with the League Standings Page not displaying all Maps. (#22
Browse files Browse the repository at this point in the history
)

* Temporarily added back in [Solo] tag so I can cut a release.

* Incremented version
  • Loading branch information
Kraust authored Mar 5, 2024
1 parent 8cf495e commit af9fcb7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion OSCRUI/leagueconnector.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ def fetch_and_insert_maps(self):
if ladders is not None:
self.widgets.ladder_map.clear()
for ladder in ladders.results:
solo = '' # '[Solo] ' if ladder.is_solo else ''
solo = '[Solo] ' if ladder.is_solo else ''
key = f'{solo}{ladder.metric} - {ladder.name} ({ladder.difficulty})'
self.league_api.ladder_dict[key] = ladder
self.widgets.ladder_map.addItem(key)
Expand Down
2 changes: 1 addition & 1 deletion main.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

class Launcher():

version = '2024.03a040'
version = '2024.03a041'

# holds the style of the app
theme = {
Expand Down

0 comments on commit af9fcb7

Please sign in to comment.