We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8924ef0 commit e7c07b7Copy full SHA for e7c07b7
oauth2/handler.go
@@ -84,7 +84,7 @@ func DefaultErrorCallback(w http.ResponseWriter, r *http.Request, err error) {
84
return
85
}
86
if _, ok := err.(LoginError); ok {
87
- http.Error(w, fmt.Sprintf("ouaht2 error: %v", err.Error()), http.StatusBadRequest)
+ http.Error(w, fmt.Sprintf("oauth2 error: %v", err.Error()), http.StatusBadRequest)
88
89
90
http.Error(w, err.Error(), http.StatusInternalServerError)
0 commit comments