Update upload.go

This commit is contained in:
ZizzyDizzyMC 2021-02-21 22:12:37 -05:00
parent 0b39245c09
commit 354714708f
1 changed files with 3 additions and 1 deletions

View File

@ -237,9 +237,11 @@ func uploadHeaderProcess(r *http.Request, upReq *UploadRequest) {
if r.Header.Get("Linx-Randomize") == "yes" { if r.Header.Get("Linx-Randomize") == "yes" {
upReq.randomBarename = true upReq.randomBarename = true
} }
upReq.contentSize, err = strconv.ParseInt(r.Header.Get("Content-Length"), 10, 64) contentSize, err := strconv.ParseInt(r.Header.Get("Content-Length"), 10, 64)
if err != nil { if err != nil {
upReq.contentSize = 0 upReq.contentSize = 0
} else {
upReq.contentSize = contentSize
} }
upReq.deleteKey = r.Header.Get("Linx-Delete-Key") upReq.deleteKey = r.Header.Get("Linx-Delete-Key")
upReq.accessKey = r.Header.Get(accessKeyHeaderName) upReq.accessKey = r.Header.Get(accessKeyHeaderName)