Skip to content

Commit

Permalink
Minor readability patch. (#17627)
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelgrigoryan25 committed Nov 12, 2021
1 parent df64fa4 commit 4744808
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion services/auth/basic.go
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ 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") {
if len(auths) != 2 || (strings.ToLower(auths[0]) != "basic") {
return nil
}

Expand Down

0 comments on commit 4744808

Please sign in to comment.