Skip to content

Commit

Permalink
version 0.52
Browse files Browse the repository at this point in the history
  • Loading branch information
FriendsOfGalaxy committed Feb 10, 2020
1 parent bff5eba commit adafb8d
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# auto-generated files
**/__pycache__
.pytest_cache
.mypy_cache
build/
output/
credentials.data
Expand Down
5 changes: 4 additions & 1 deletion src/plugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,10 @@ async def get_owned_games(self):
self._parse_local_game_ownership()

await self._parse_club_games()
await self._parse_subscription_games()
try:
await self._parse_subscription_games()
except Exception as e:
log.warning(f"Parsing subscriptions failed, most likely account without subscription {repr(e)}")

self.owned_games_sent = True

Expand Down
2 changes: 1 addition & 1 deletion src/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '0.51'
__version__ = '0.52'

0 comments on commit adafb8d

Please sign in to comment.