refactor(auth): use REDIRECT_URI

This commit is contained in:
FineFindus
2023-04-09 15:07:22 +02:00
parent a7261bec47
commit 7615723d4f

View File

@@ -215,7 +215,7 @@ public class AccountSessionManager{
.path("/oauth/authorize")
.appendQueryParameter("response_type", "code")
.appendQueryParameter("client_id", result.clientId)
.appendQueryParameter("redirect_uri", "moshidon-android-auth://callback")
.appendQueryParameter("redirect_uri", REDIRECT_URI)
.appendQueryParameter("scope", SCOPE)
.build();