From 95f2ea40b6626d8000fce99f604507c51798306a Mon Sep 17 00:00:00 2001 From: David Sangrey Date: Tue, 12 Dec 2023 21:28:56 -0500 Subject: [PATCH] [#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. --- companion.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/companion.py b/companion.py index 3384af364..520afff28 100644 --- a/companion.py +++ b/companion.py @@ -395,7 +395,7 @@ def refresh(self) -> str | None: 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'