From 8453a060c37644ce4d87d351c647b48acf82e536 Mon Sep 17 00:00:00 2001 From: FChannel <> Date: Sat, 17 Jul 2021 15:07:24 -0700 Subject: routing corrections --- main.go | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'main.go') diff --git a/main.go b/main.go index 3959dae..4327e44 100644 --- a/main.go +++ b/main.go @@ -531,14 +531,14 @@ func main() { if FingerActor(follow).Id != ""{ MakeActivityRequestOutbox(db, followActivity) } - - var redirect string - if(actor.Name != "main") { - redirect = "/" + actor.Name - } - - http.Redirect(w, r, "/" + *Key + "/" + redirect, http.StatusSeeOther) } + + var redirect string + if(actor.Name != "main") { + redirect = "/" + actor.Name + } + + http.Redirect(w, r, "/" + *Key + "/" + redirect, http.StatusSeeOther) } else if manage && actor.Name != "" { t := template.Must(template.New("").Funcs(template.FuncMap{ "sub": func (i, j int) int { return i - j }}).ParseFiles("./static/main.html", "./static/manage.html")) -- cgit v1.2.3