fix: Replace incorrect http status code

This commit is contained in:
Danny Bessems 2024-03-10 22:27:34 +11:00
parent 57d7e0cc69
commit 62c27305f9
1 changed files with 1 additions and 1 deletions

View File

@ -59,7 +59,7 @@ func callbackHandler(w http.ResponseWriter, r *http.Request) {
// w.Write([]byte("Authentication successful!"))
url := "https://alias.spamasaurus.com"
http.Redirect(w, r, url, http.StatusAccepted)
http.Redirect(w, r, url, http.StatusSeeOther)
}
func healthHandler(w http.ResponseWriter, r *http.Request) {