Skip to content

Commit

Permalink
Minor readability patch. (go-gitea#17627)
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelgrigoryan25 authored and Stelios Malathouras committed Mar 28, 2022
1 parent 58881f2 commit 94cb580
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 94cb580

Please sign in to comment.