aboutsummaryrefslogtreecommitdiff
path: root/lib/anubis.go
diff options
context:
space:
mode:
authorJason Cameron <git@jasoncameron.dev>2025-03-30 22:24:47 -0400
committerGitHub <noreply@github.com>2025-03-30 22:24:47 -0400
commitfeca1ddeead4a0138a7fbb3754509a814e0a4154 (patch)
treeb98f05b3110374a59d1590bb6fcdb01ee4c28699 /lib/anubis.go
parenteab62f7611cb73ce4a42f3c668add023ad2530be (diff)
downloadanubis-feca1ddeead4a0138a7fbb3754509a814e0a4154.tar.xz
anubis-feca1ddeead4a0138a7fbb3754509a814e0a4154.zip
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 <git@jasoncameron.dev>
Diffstat (limited to 'lib/anubis.go')
-rw-r--r--lib/anubis.go2
1 files changed, 1 insertions, 1 deletions
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)