From 2a66ea48e8c81b2a9c92347d738c611b7ea276c5 Mon Sep 17 00:00:00 2001 From: jbergner Date: Sat, 8 Nov 2025 23:46:14 +0100 Subject: [PATCH] updated to unauthorized --- main.go | 1 + 1 file changed, 1 insertion(+) diff --git a/main.go b/main.go index e103ee0..7256502 100644 --- a/main.go +++ b/main.go @@ -784,5 +784,6 @@ func errorhtml(w http.ResponseWriter, r *http.Request) { ` w.Header().Set("Content-Type", "text/html; charset=utf-8") + w.WriteHeader(http.StatusForbidden) _, _ = w.Write([]byte(html)) }