Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Minor readability patch. #17627

Merged
merged 8 commits into from
Nov 12, 2021
4 changes: 2 additions & 2 deletions services/auth/basic.go
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,8 @@ func (b *Basic) Verify(req *http.Request, w http.ResponseWriter, store DataStore
}

auths := strings.SplitN(baHead, " ", 2)
if len(auths) != 2 || (auths[0] != "Basic" && auths[0] != "basic") {
return nil
if len(auths) != 2 || (strings.ToLower(auths[0]) != "basic") {
return nil
techknowlogick marked this conversation as resolved.
Show resolved Hide resolved
}

uname, passwd, _ := base.BasicAuthDecode(auths[1])
Expand Down