diff --git a/src/controller/auth.py b/src/controller/auth.py index cd40eba..98196a6 100644 --- a/src/controller/auth.py +++ b/src/controller/auth.py @@ -13,7 +13,7 @@ def discord_process_code(code: str) -> dict | None: "client_secret": os.environ["DISCORD_CLIENTSECRET"], "code": code, "grant_type": "authorization_code", - "redirect_uri": os.environ["FRONTEND_ENDPOINT"] + "/login", + "redirect_uri": os.environ["FRONTEND_ENDPOINT"], "scope": "identify", }, timeout=10,