aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRunxi Yu <me@runxiyu.org>2025-03-25 23:41:43 +0800
committerRunxi Yu <me@runxiyu.org>2025-03-25 23:41:43 +0800
commitb8847555774cb17524fcdcfe2e4afd0eab9fcc51 (patch)
tree0f461f617704ac68a8d4b59c3d8f4a5c6df2caa2
parentColor adjustments (diff)
parent44, not 43 max len (diff)
downloadpowxy-b8847555774cb17524fcdcfe2e4afd0eab9fcc51.tar.gz
powxy-b8847555774cb17524fcdcfe2e4afd0eab9fcc51.tar.zst
powxy-b8847555774cb17524fcdcfe2e4afd0eab9fcc51.zip
Merge branch 'master' into irclog
-rw-r--r--handler.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/handler.go b/handler.go
index e2251f9..9e5a679 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("\x0304TOOLONG",
"ip", remoteIP,
"uri", uri,