refac/fix: oauth

This commit is contained in:
Timothy Jaeryang Baek
2025-11-24 06:03:19 -05:00
parent 06f0bfd9f5
commit 286a5ad0db
2 changed files with 1 additions and 3 deletions

View File

@@ -1276,8 +1276,6 @@ class OAuthManager:
if client:
if hasattr(client, "client_id"):
auth_params["client_id"] = client.client_id
if hasattr(client, "client_secret"):
auth_params["client_secret"] = client.client_secret
try:
token = await client.authorize_access_token(request, **auth_params)