allow 10mb pdf
Ted Unangst tedu@tedunangst.com
Fri, 24 Apr 2020 13:48:35 -0400
1 files changed,
1 insertions(+),
1 deletions(-)
jump to
M
web.go
→
web.go
@@ -1461,7 +1461,7 @@ } else {
ct := http.DetectContentType(data) switch ct { case "application/pdf": - maxsize := 1000000 + maxsize := 10000000 if len(data) > maxsize { log.Printf("bad image: %s too much pdf: %d", err, len(data)) http.Error(w, "didn't like your attachment", http.StatusUnsupportedMediaType)