forked from open-webui/open-webui
fix: 'dict' object issue
This commit is contained in:
parent
1d3fadb221
commit
366679ff7c
1 changed files with 1 additions and 4 deletions
|
@ -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 a new issue