dkforest

A forum and chat platform (onion)
git clone https://git.dasho.dev/n0tr1v/dkforest.git
Log | Files | Refs | LICENSE

commit 5131c7f32acc7afebc0baa3e631ec27a1cc50e0e
parent 52742e3c6ef8392f57b0ba3bda6dfbcaed09558a
Author: n0tr1v <n0tr1v@protonmail.com>
Date:   Sun, 26 Feb 2023 20:42:47 -0800

cleanup

Diffstat:
Mpkg/web/handlers/handlers.go | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pkg/web/handlers/handlers.go b/pkg/web/handlers/handlers.go @@ -4148,7 +4148,7 @@ func ByteRoadChallengeHandler(c echo.Context) error { return c.Render(http.StatusOK, "vip.byte-road-challenge", data) } else if formName == "register" { - captchaSession, err := c.Cookie("challenge_byte_road_session") + captchaSession, err := c.Cookie(hutils.ByteRoadCookieName) if err != nil { return c.Redirect(http.StatusFound, "/vip/challenges/byte-road") }