diff options
-rwxr-xr-x | Server | bin | 11195223 -> 0 bytes | |||
-rw-r--r-- | outboxPost.go | 4 |
2 files changed, 2 insertions, 2 deletions
Binary files differ diff --git a/outboxPost.go b/outboxPost.go index a827e21..b3a8baf 100644 --- a/outboxPost.go +++ b/outboxPost.go @@ -25,9 +25,9 @@ func ParseOutboxRequest(w http.ResponseWriter, r *http.Request, db *sql.DB) { r.ParseMultipartForm(5 << 20) if(BoardHasAuthType(db, actor.Name, "captcha") && CheckCaptcha(db, r.FormValue("captcha"))) { f, header, _ := r.FormFile("file") - defer f.Close() - + if(header != nil) { + defer f.Close() if(header.Size > (7 << 20)){ w.WriteHeader(http.StatusRequestEntityTooLarge) w.Write([]byte("7MB max file size")) |