From 339fbe354d0e5de8c2c9377110d6cd995b765cb5 Mon Sep 17 00:00:00 2001 From: "Alexander \"Arav\" Andreev" Date: Sun, 4 Jun 2023 18:06:54 +0400 Subject: [PATCH] Added missing space between / and status text. --- internal/http/web_handlers.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/http/web_handlers.go b/internal/http/web_handlers.go index 6d39aed..6368197 100644 --- a/internal/http/web_handlers.go +++ b/internal/http/web_handlers.go @@ -178,7 +178,7 @@ func SitemapXml(w http.ResponseWriter, r *http.Request) { } func Error(w http.ResponseWriter, code int, reason, message string) { - web.ErrorXXX("/"+http.StatusText(code), reason, message, code, w) + web.ErrorXXX("/ "+http.StatusText(code), reason, message, code, w) } func cleanupNewlines(text string) (out string) {