mirror of
https://github.com/open-webui/open-webui
synced 2024-11-25 21:38:43 +00:00
fix: 'dict' object issue
This commit is contained in:
parent
1d3fadb221
commit
366679ff7c
@ -61,10 +61,7 @@ def extract_token_from_auth_header(auth_header: str):
|
|||||||
def get_http_authorization_cred(auth_header: str):
|
def get_http_authorization_cred(auth_header: str):
|
||||||
try:
|
try:
|
||||||
scheme, credentials = auth_header.split(" ")
|
scheme, credentials = auth_header.split(" ")
|
||||||
return {
|
return HTTPAuthorizationCredentials(scheme=scheme, credentials=credentials)
|
||||||
"scheme": scheme,
|
|
||||||
"credentials": credentials,
|
|
||||||
}
|
|
||||||
except:
|
except:
|
||||||
raise ValueError(ERROR_MESSAGES.INVALID_TOKEN)
|
raise ValueError(ERROR_MESSAGES.INVALID_TOKEN)
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user