From a7a5cfdb525951ffd9261602cfe5e6ca12ad1956 Mon Sep 17 00:00:00 2001 From: Runxi Yu Date: Tue, 25 Mar 2025 23:41:18 +0800 Subject: 44, not 43 max len --- handler.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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, -- cgit v1.2.3