From 9188b55ee25ebb2f4bb49d069970dcd764f5a0b0 Mon Sep 17 00:00:00 2001 From: Minecon724 Date: Mon, 17 Mar 2025 13:20:01 +0100 Subject: [PATCH] Fix this Not Found message Signed-off-by: Minecon724 --- services/context/context_response.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/services/context/context_response.go b/services/context/context_response.go index f36b834a44..9ed343c5cc 100644 --- a/services/context/context_response.go +++ b/services/context/context_response.go @@ -148,7 +148,7 @@ func (ctx *Context) notFoundInternal(logMsg string, logErr error) { } if !showHTML { - ctx.plainTextInternal(3, http.StatusNotFound, []byte("Not found.\n")) + ctx.plainTextInternal(3, http.StatusNotFound, []byte(http.StatusText(http.StatusNotFound))) return }