aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRunxi Yu <me@runxiyu.org>2025-03-25 23:41:18 +0800
committerRunxi Yu <me@runxiyu.org>2025-03-25 23:41:18 +0800
commita7a5cfdb525951ffd9261602cfe5e6ca12ad1956 (patch)
treee16ef4f0f80ec0f66a9e3288d291a03fa7cedeb8
parenthandler: Add Path: "/" for the cookie (diff)
downloadpowxy-a7a5cfdb525951ffd9261602cfe5e6ca12ad1956.tar.gz
powxy-a7a5cfdb525951ffd9261602cfe5e6ca12ad1956.tar.zst
powxy-a7a5cfdb525951ffd9261602cfe5e6ca12ad1956.zip
44, not 43 max len
-rw-r--r--handler.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/handler.go b/handler.go
index 4348cb6..2cbd225 100644
--- a/handler.go
+++ b/handler.go
@@ -118,7 +118,7 @@ func handler(writer http.ResponseWriter, request *http.Request) {
// We validate that the length is reasonable before even
// decoding it with base64.
- if len(formValues[0]) > 43 {
+ if len(formValues[0]) > 44 {
slog.Warn("submission too long",
"ip", remoteIP,
"uri", uri,