aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xServerbin11195223 -> 0 bytes
-rw-r--r--outboxPost.go4
2 files changed, 2 insertions, 2 deletions
diff --git a/Server b/Server
deleted file mode 100755
index 4977d41..0000000
--- a/Server
+++ /dev/null
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"))