From feca1ddeead4a0138a7fbb3754509a814e0a4154 Mon Sep 17 00:00:00 2001 From: Jason Cameron Date: Sun, 30 Mar 2025 22:24:47 -0400 Subject: Fix: Correct typo in challenge page title (main) (#174) - Fixed a typo in the challenge page title, removing an unnecessary backslash. - Updated the index page title to "Making sure you're not a bot!". Signed-off-by: Jason Cameron --- lib/anubis.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib') diff --git a/lib/anubis.go b/lib/anubis.go index 939262a..1b2ebfc 100644 --- a/lib/anubis.go +++ b/lib/anubis.go @@ -332,7 +332,7 @@ func (s *Server) MaybeReverseProxy(w http.ResponseWriter, r *http.Request) { func (s *Server) RenderIndex(w http.ResponseWriter, r *http.Request) { handler := internal.NoStoreCache( templ.Handler( - web.Base("Making sure you\\'re not a bot!", web.Index()), + web.Base("Making sure you're not a bot!", web.Index()), ), ) handler.ServeHTTP(w, r) -- cgit v1.2.3