mirror of
https://github.com/pagefaultgames/rogueserver.git
synced 2025-04-04 12:07:13 +08:00
Don't defer redirects
This commit is contained in:
parent
611a0e3dec
commit
ed8122cd3b
@ -33,13 +33,13 @@ var (
|
|||||||
func HandleDiscordCallback(w http.ResponseWriter, r *http.Request) (string, error) {
|
func HandleDiscordCallback(w http.ResponseWriter, r *http.Request) (string, error) {
|
||||||
code := r.URL.Query().Get("code")
|
code := r.URL.Query().Get("code")
|
||||||
if code == "" {
|
if code == "" {
|
||||||
defer http.Redirect(w, r, GameURL, http.StatusSeeOther)
|
http.Redirect(w, r, GameURL, http.StatusSeeOther)
|
||||||
return "", errors.New("code is empty")
|
return "", errors.New("code is empty")
|
||||||
}
|
}
|
||||||
|
|
||||||
discordId, err := RetrieveDiscordId(code)
|
discordId, err := RetrieveDiscordId(code)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
defer http.Redirect(w, r, GameURL, http.StatusSeeOther)
|
http.Redirect(w, r, GameURL, http.StatusSeeOther)
|
||||||
return "", err
|
return "", err
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -35,13 +35,13 @@ var (
|
|||||||
func HandleGoogleCallback(w http.ResponseWriter, r *http.Request) (string, error) {
|
func HandleGoogleCallback(w http.ResponseWriter, r *http.Request) (string, error) {
|
||||||
code := r.URL.Query().Get("code")
|
code := r.URL.Query().Get("code")
|
||||||
if code == "" {
|
if code == "" {
|
||||||
defer http.Redirect(w, r, GameURL, http.StatusSeeOther)
|
http.Redirect(w, r, GameURL, http.StatusSeeOther)
|
||||||
return "", errors.New("code is empty")
|
return "", errors.New("code is empty")
|
||||||
}
|
}
|
||||||
|
|
||||||
googleId, err := RetrieveGoogleId(code)
|
googleId, err := RetrieveGoogleId(code)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
defer http.Redirect(w, r, GameURL, http.StatusSeeOther)
|
http.Redirect(w, r, GameURL, http.StatusSeeOther)
|
||||||
return "", err
|
return "", err
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -635,7 +635,7 @@ func handleProviderCallback(w http.ResponseWriter, r *http.Request) {
|
|||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
defer http.Redirect(w, r, account.GameURL, http.StatusSeeOther)
|
http.Redirect(w, r, account.GameURL, http.StatusSeeOther)
|
||||||
}
|
}
|
||||||
|
|
||||||
func handleProviderLogout(w http.ResponseWriter, r *http.Request) {
|
func handleProviderLogout(w http.ResponseWriter, r *http.Request) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user