From aa1c089fc58c73a7f820c07066a54e89586acde8 Mon Sep 17 00:00:00 2001 From: Runxi Yu Date: Sun, 23 Mar 2025 09:55:01 +0800 Subject: Handle (i.e. ignore) all missing error checks --- main.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'main.go') diff --git a/main.go b/main.go index 14e36ed..e11d6d0 100644 --- a/main.go +++ b/main.go @@ -194,7 +194,7 @@ func main() { } authPage := func(message string) { - tmpl.Execute(writer, tparams{ + _ = tmpl.Execute(writer, tparams{ UnsignedTokenBase64: base64.StdEncoding.EncodeToString(expectedToken[:sha256.Size]), Message: message, NeedBits: difficulty, @@ -296,7 +296,7 @@ func proxyRequest(writer http.ResponseWriter, request *http.Request) { maps.Copy(writer.Header(), response.Header) writer.WriteHeader(response.StatusCode) - io.Copy(writer, response.Body) + _, _ = io.Copy(writer, response.Body) } func stringToBytes(s string) (bytes []byte) { -- cgit v1.2.3