aboutsummaryrefslogtreecommitdiff
path: root/main.go
diff options
context:
space:
mode:
authorRunxi Yu <me@runxiyu.org>2025-03-23 09:55:01 +0800
committerRunxi Yu <me@runxiyu.org>2025-03-23 09:55:01 +0800
commitaa1c089fc58c73a7f820c07066a54e89586acde8 (patch)
tree28fe82629119d44afe60f4945d9bf6a751d6bdc2 /main.go
parentUpdate every 256 tries (diff)
downloadpowxy-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.go4
1 files changed, 2 insertions, 2 deletions
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) {