Update upload.go

This commit is contained in:
ZizzyDizzyMC 2021-02-21 20:56:12 -05:00
parent b61c08ac13
commit 357f1b1883
1 changed files with 5 additions and 2 deletions

View File

@ -229,8 +229,11 @@ 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 strconv.ParseInt(r.Header.Get("Content-Length"), 10, 64) > Config.maxSize {
upReq.size = strconv.ParseInt(r.Header.Get("Content-Length"), 10, 64)
i, err := strconv.ParseInt(r.Header.Get("Content-Length"), 10, 64)
if err = nil {
if i > Config.maxSize {
upReq.size = i
}
}
}
if r.Header.Get("Linx-Randomize") == "yes" {