diff options
author | Runxi Yu <me@runxiyu.org> | 2025-03-23 10:24:31 +0800 |
---|---|---|
committer | Runxi Yu <me@runxiyu.org> | 2025-03-23 10:24:31 +0800 |
commit | c7287815beb55ae8616a364a90dcb455e4178ad4 (patch) | |
tree | fda64fcc50aedf1979c33d2ba30b4a867cd95909 | |
parent | Why did I put an HTTP URL there... (diff) | |
download | powxy-c7287815beb55ae8616a364a90dcb455e4178ad4.tar.gz powxy-c7287815beb55ae8616a364a90dcb455e4178ad4.tar.zst powxy-c7287815beb55ae8616a364a90dcb455e4178ad4.zip |
Add missing error return
-rw-r--r-- | main.go | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -183,6 +183,7 @@ func main() { if err != nil { if !errors.Is(err, http.ErrNoCookie) { http.Error(writer, "error fetching cookie", http.StatusInternalServerError) + return } } |