Update upload.go

This commit is contained in:
ZizzyDizzyMC 2021-02-21 20:40:53 -05:00
parent b8f4b55f05
commit 49161feb7a
1 changed files with 1 additions and 1 deletions

View File

@ -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")
}