Fix this Not Found message

Signed-off-by: Minecon724 <minecon724@noreply.git.m724.eu>
This commit is contained in:
Minecon724 2025-03-17 13:20:01 +01:00
parent bbfc7ccb10
commit 9188b55ee2
Signed by: Minecon724
GPG key ID: A02E6E67AB961189

View file

@ -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
}