1
Fork 0

Don't redirect inexistent groups.

This commit is contained in:
Juliusz Chroboczek 2021-10-28 19:55:40 +02:00
parent 869eb9b839
commit d440cdf898
1 changed files with 6 additions and 6 deletions

View File

@ -283,12 +283,6 @@ func groupHandler(w http.ResponseWriter, r *http.Request) {
return
}
if r.URL.Path != "/group/"+name+"/" {
http.Redirect(w, r, "/group/"+name+"/",
http.StatusPermanentRedirect)
return
}
g, err := group.Add(name, nil)
if err != nil {
if os.IsNotExist(err) {
@ -301,6 +295,12 @@ func groupHandler(w http.ResponseWriter, r *http.Request) {
return
}
if r.URL.Path != "/group/"+name+"/" {
http.Redirect(w, r, "/group/"+name+"/",
http.StatusPermanentRedirect)
return
}
if redirect := g.Redirect(); redirect != "" {
http.Redirect(w, r, redirect, http.StatusPermanentRedirect)
return