From 93d0ba1e24e4f97f3efea1b9b71ea5540f61e827 Mon Sep 17 00:00:00 2001 From: fiatjaf Date: Sun, 22 Oct 2023 18:02:08 -0300 Subject: [PATCH] fix favicon redirect path. --- redirect.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/redirect.go b/redirect.go index 4c7fb7e..d4e8fa9 100644 --- a/redirect.go +++ b/redirect.go @@ -11,7 +11,7 @@ import ( ) func redirectToFavicon(w http.ResponseWriter, r *http.Request) { - http.Redirect(w, r, "/static/favicon/android-chrome-192x192.png", http.StatusFound) + http.Redirect(w, r, "/njump/static/favicon/android-chrome-192x192.png", http.StatusFound) } func redirectToRandom(w http.ResponseWriter, r *http.Request) {