aboutsummaryrefslogtreecommitdiff
path: root/main.go
diff options
context:
space:
mode:
authorRunxi Yu <me@runxiyu.org>2025-03-23 10:24:31 +0800
committerRunxi Yu <me@runxiyu.org>2025-03-23 10:24:31 +0800
commitc7287815beb55ae8616a364a90dcb455e4178ad4 (patch)
treefda64fcc50aedf1979c33d2ba30b4a867cd95909 /main.go
parentWhy did I put an HTTP URL there... (diff)
downloadpowxy-c7287815beb55ae8616a364a90dcb455e4178ad4.tar.gz
powxy-c7287815beb55ae8616a364a90dcb455e4178ad4.tar.zst
powxy-c7287815beb55ae8616a364a90dcb455e4178ad4.zip
Add missing error return
Diffstat (limited to 'main.go')
-rw-r--r--main.go1
1 files changed, 1 insertions, 0 deletions
diff --git a/main.go b/main.go
index c689165..bbdadb9 100644
--- a/main.go
+++ b/main.go
@@ -183,6 +183,7 @@ func main() {
if err != nil {
if !errors.Is(err, http.ErrNoCookie) {
http.Error(writer, "error fetching cookie", http.StatusInternalServerError)
+ return
}
}