From 4cc4eda76f30e908fa52270755924d5dd4afef70 Mon Sep 17 00:00:00 2001 From: Ted Unangst Date: Tue, 18 Jun 2019 01:35:58 -0400 Subject: [PATCH] only hide keywords on some pages, so threads are complete. --- honk.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/honk.go b/honk.go index 61f5c22..1669eff 100644 --- a/honk.go +++ b/honk.go @@ -501,6 +501,7 @@ func showcombo(w http.ResponseWriter, r *http.Request) { name := mux.Vars(r)["name"] u := login.GetUserInfo(r) honks := gethonksbycombo(u.UserID, name) + honks = osmosis(honks, u.UserID) honkpage(w, r, u, nil, honks, "honks by combo: "+name) } func showconvoy(w http.ResponseWriter, r *http.Request) { @@ -546,7 +547,6 @@ func honkpage(w http.ResponseWriter, r *http.Request, u *login.UserInfo, user *W reverbolate(honks) templinfo := getInfo(r) if u != nil { - honks = osmosis(honks, u.UserID) templinfo["HonkCSRF"] = login.GetCSRF("honkhonk", r) } if u == nil {