mirror of
https://github.com/open-webui/open-webui.git
synced 2026-04-29 17:06:40 -05:00
refac
This commit is contained in:
@@ -349,10 +349,17 @@ class OAuthClientManager:
|
|||||||
|
|
||||||
if (
|
if (
|
||||||
oauth_client_info.server_metadata
|
oauth_client_info.server_metadata
|
||||||
and "S256"
|
and oauth_client_info.server_metadata.code_challenge_methods_supported
|
||||||
in oauth_client_info.server_metadata.code_challenge_methods_supported
|
|
||||||
):
|
):
|
||||||
kwargs["code_challenge_method"] = "S256"
|
if (
|
||||||
|
isinstance(
|
||||||
|
oauth_client_info.server_metadata.code_challenge_methods_supported,
|
||||||
|
list,
|
||||||
|
)
|
||||||
|
and "S256"
|
||||||
|
in oauth_client_info.server_metadata.code_challenge_methods_supported
|
||||||
|
):
|
||||||
|
kwargs["code_challenge_method"] = "S256"
|
||||||
|
|
||||||
self.clients[client_id] = {
|
self.clients[client_id] = {
|
||||||
"client": self.oauth.register(**kwargs),
|
"client": self.oauth.register(**kwargs),
|
||||||
|
|||||||
Reference in New Issue
Block a user