remove callback error redirect

This commit is contained in:
Anish Mukherjee 2022-12-23 19:14:30 +05:30
parent 66efcf9eb3
commit fe930c3ca8

View file

@ -4,7 +4,6 @@ import (
"encoding/base64"
"encoding/json"
"errors"
"fmt"
"net/http"
"strings"
@ -127,13 +126,7 @@ func HandleAuthCallback(w http.ResponseWriter, r *http.Request) {
// oauth
func HandleAuthLogin(w http.ResponseWriter, r *http.Request) {
if auth_provider == nil {
var referer = r.Header.Get("referer")
if referer != "" {
http.Redirect(w, r, referer+"login?oauth=callback-error", http.StatusTemporaryRedirect)
return
}
w.Header().Set("Content-Type", "text/html; charset=utf-8")
_, _ = fmt.Fprintln(w, oauthNotConfigured)
handleOauthNotConfigured(w)
return
}
var functions = getCurrentAuthFunctions()