aboutsummaryrefslogtreecommitdiff
path: root/main.go
diff options
context:
space:
mode:
authorknotteye <knotteye@airmail.cc>2021-06-30 18:13:29 -0500
committerknotteye <knotteye@airmail.cc>2021-06-30 18:13:29 -0500
commit0fdc5e20c4de901d3042d88ae90a29092932ca92 (patch)
tree718ae122dda4faf79ddff3c29c86205f968ece6f /main.go
parent0f7e3a6cf9ef67f7c0f8472925dcd24602224e4c (diff)
return user to catalog when posting from catalog
Diffstat (limited to 'main.go')
-rw-r--r--main.go6
1 files changed, 5 insertions, 1 deletions
diff --git a/main.go b/main.go
index 76da453..6b40399 100644
--- a/main.go
+++ b/main.go
@@ -393,7 +393,11 @@ func main() {
}
}
- http.Redirect(w, r, Domain + "/" + r.FormValue("boardName"), http.StatusMovedPermanently)
+ if(r.FormValue("returnTo") == "catalog"){
+ http.Redirect(w, r, Domain + "/" + r.FormValue("boardName") + "/catalog", http.StatusMovedPermanently)
+ } else {
+ http.Redirect(w, r, Domain + "/" + r.FormValue("boardName"), http.StatusMovedPermanently)
+ }
return
}