diff options
author | Runxi Yu <me@runxiyu.org> | 2025-03-25 23:41:18 +0800 |
---|---|---|
committer | Runxi Yu <me@runxiyu.org> | 2025-03-25 23:41:18 +0800 |
commit | a7a5cfdb525951ffd9261602cfe5e6ca12ad1956 (patch) | |
tree | e16ef4f0f80ec0f66a9e3288d291a03fa7cedeb8 | |
parent | handler: Add Path: "/" for the cookie (diff) | |
download | powxy-a7a5cfdb525951ffd9261602cfe5e6ca12ad1956.tar.gz powxy-a7a5cfdb525951ffd9261602cfe5e6ca12ad1956.tar.zst powxy-a7a5cfdb525951ffd9261602cfe5e6ca12ad1956.zip |
44, not 43 max len
-rw-r--r-- | handler.go | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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, |