fix favicon redirect path.

This commit is contained in:
fiatjaf
2023-10-22 18:02:08 -03:00
parent ef35358319
commit 93d0ba1e24

View File

@@ -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) {