Skip to content

Commit

Permalink
version 0.55.4
Browse files Browse the repository at this point in the history
  • Loading branch information
FriendsOfGalaxy committed Jul 16, 2021
1 parent 01db8ef commit ee90d9e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/backend.py
Original file line number Diff line number Diff line change
Expand Up @@ -273,7 +273,7 @@ async def get_club_titles(self):
}
payload = json.dumps(payload)
headers = {'Content-Type': 'application/json'}
return await self._do_request_safe('post', "https://public-ubiservices.ubi.com/v3/profiles/me/uplay/graphql",
return await self._do_request_safe('post', "https://public-ubiservices.ubi.com/v1/profiles/me/uplay/graphql",
add_to_headers=headers, data=payload)

async def get_game_stats(self, space_id):
Expand Down
5 changes: 4 additions & 1 deletion src/version.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
__version__ = '0.55.3'
__version__ = '0.55.4'

__changelog__ = {
"0.55.4": """
- hotfix fetching club games by replacing version of API endpoint
""",
"0.55.3": """
- changed login window's title
- replaced deprecated owned games endpoint
Expand Down

0 comments on commit ee90d9e

Please sign in to comment.