1
0
mirror of https://github.com/EDCD/EDMarketConnector.git synced 2025-04-15 08:40:34 +03:00

[#1843] Fix URL Parameter Bug

Replaces vague space with properly encoded %20. This SHOULD solve the issue, but I can't replicate the original issue.
This commit is contained in:
David Sangrey 2023-12-12 21:28:56 -05:00
parent 21268d5f19
commit 95f2ea40b6
No known key found for this signature in database
GPG Key ID: 3AEADBB0186884BC

View File

@ -395,7 +395,7 @@ class Auth:
webbrowser.open(
f'{FRONTIER_AUTH_SERVER}{self.FRONTIER_AUTH_PATH_AUTH}?response_type=code'
f'&audience=frontier,steam,epic'
f'&scope=auth capi'
f'&scope=auth%20capi'
f'&client_id={self.CLIENT_ID}'
f'&code_challenge={challenge}'
f'&code_challenge_method=S256'