diff options
author | Runxi Yu <me@runxiyu.org> | 2025-03-23 09:55:01 +0800 |
---|---|---|
committer | Runxi Yu <me@runxiyu.org> | 2025-03-23 09:55:01 +0800 |
commit | aa1c089fc58c73a7f820c07066a54e89586acde8 (patch) | |
tree | 28fe82629119d44afe60f4945d9bf6a751d6bdc2 /main.go | |
parent | Update every 256 tries (diff) | |
download | powxy-aa1c089fc58c73a7f820c07066a54e89586acde8.tar.gz powxy-aa1c089fc58c73a7f820c07066a54e89586acde8.tar.zst powxy-aa1c089fc58c73a7f820c07066a54e89586acde8.zip |
Handle (i.e. ignore) all missing error checks
Diffstat (limited to 'main.go')
-rw-r--r-- | main.go | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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) { |