mirror of
https://github.com/open-webui/open-webui.git
synced 2025-12-12 04:15:25 +00:00
Merge pull request #16424 from CERIT-SC/audit-fix
fix: Audit does not log user information
This commit is contained in:
commit
25cc8049c8
1 changed files with 1 additions and 1 deletions
|
|
@ -195,7 +195,7 @@ class AuditLoggingMiddleware:
|
||||||
|
|
||||||
try:
|
try:
|
||||||
user = get_current_user(
|
user = get_current_user(
|
||||||
request, None, get_http_authorization_cred(auth_header)
|
request, None, None, get_http_authorization_cred(auth_header)
|
||||||
)
|
)
|
||||||
return user
|
return user
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue