aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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,