mirror of
https://github.com/filebrowser/filebrowser.git
synced 2026-07-29 02:30:29 +00:00
try to get the user in another way
This commit is contained in:
parent
7f95e5e6de
commit
00cbdd1833
1 changed files with 2 additions and 2 deletions
|
|
@ -51,8 +51,8 @@ func (f FileManager) ServeHTTP(w http.ResponseWriter, r *http.Request) (int, err
|
|||
return http.StatusForbidden, nil
|
||||
}
|
||||
|
||||
// Obtains the user
|
||||
username, _, _ := r.BasicAuth()
|
||||
// Obtains the user. See https://github.com/mholt/caddy/blob/master/caddyhttp/basicauth/basicauth.go#L66
|
||||
username, _ := r.Context().Value(httpserver.RemoteUserCtxKey).(string)
|
||||
if _, ok := c.Users[username]; ok {
|
||||
user = c.Users[username]
|
||||
} else {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue