mirror of
https://github.com/open-webui/open-webui
synced 2025-01-19 09:16:44 +00:00
fixed: incorrectly indexing the key userinfo in the token.
This commit is contained in:
parent
0425621494
commit
4b6700a4b2
@ -200,7 +200,7 @@ class OAuthManager:
|
||||
except Exception as e:
|
||||
log.warning(f"OAuth callback error: {e}")
|
||||
raise HTTPException(400, detail=ERROR_MESSAGES.INVALID_CRED)
|
||||
user_data: UserInfo = token["userinfo"]
|
||||
user_data: UserInfo = token.get("userinfo")
|
||||
if not user_data:
|
||||
user_data: UserInfo = await client.userinfo(token=token)
|
||||
if not user_data:
|
||||
|
Loading…
Reference in New Issue
Block a user