From 49161feb7a0ba9f73c77c3179ae58a5717110591 Mon Sep 17 00:00:00 2001 From: ZizzyDizzyMC Date: Sun, 21 Feb 2021 20:40:53 -0500 Subject: [PATCH] Update upload.go --- upload.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/upload.go b/upload.go index d91e182..bca37e6 100644 --- a/upload.go +++ b/upload.go @@ -228,7 +228,7 @@ func uploadRemote(c web.C, w http.ResponseWriter, r *http.Request) { } func uploadHeaderProcess(r *http.Request, upReq *UploadRequest) { - if len(r.Header.Get("Content-Length") > 0 { + if len(r.Header.Get("Content-Length")) > 0 { if r.Header.Get("Content-Length") > Config.maxSize { upReq.size = r.Header.Get("Content-Length") }