Update upload.go

This commit is contained in:
ZizzyDizzyMC 2021-02-21 20:49:22 -05:00
parent 486e4ed836
commit c4f40d2747
1 changed files with 4 additions and 2 deletions

View File

@ -229,8 +229,10 @@ func uploadRemote(c web.C, w http.ResponseWriter, r *http.Request) {
func uploadHeaderProcess(r *http.Request, upReq *UploadRequest) { func uploadHeaderProcess(r *http.Request, upReq *UploadRequest) {
if len(r.Header.Get("Content-Length")) > 0 { if len(r.Header.Get("Content-Length")) > 0 {
if strconv.Atoi(r.Header.Get("Content-Length")) > Config.maxSize { i, err := strconv.Atoi(r.Header.Get("Content-Length"))
upReq.size = strconv.Atoi(r.Header.Get("Content-Length"))
if i > Config.maxSize {
upReq.size = i
} }
} }
if r.Header.Get("Linx-Randomize") == "yes" { if r.Header.Get("Linx-Randomize") == "yes" {