Skip to content

Commit

Permalink
lower case
Browse files Browse the repository at this point in the history
  • Loading branch information
Lennard Schwarz committed Sep 13, 2024
1 parent 9214791 commit f6e61ba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/server.go
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ func (s *Server) AuthHandler(providerName, rule string) http.HandlerFunc {
// The email address isn't valid so display an error and clear the cookie
// Clearing the cookie will allow the user to try another email address and avoid being trapped on 'Not authorized'
http.SetCookie(w, ClearCookie(r))
http.Error(w, "Not authorized (Refresh to try again with a different email address)", 401)
http.Error(w, "Not authorized (refresh to try again with a different email address)", 401)
} else {
http.Error(w, "Not authorized", 401)
}
Expand Down

0 comments on commit f6e61ba

Please sign in to comment.