Update upload.go
This commit is contained in:
parent
5c3ace8829
commit
ddb89bdc66
|
@ -229,7 +229,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 {
|
||||
i, err := strconv.ParseUint(r.Header.Get("Content-Length"), 10, 64)
|
||||
i, err := strconv.ParseInt(r.Header.Get("Content-Length"), 10, 64)
|
||||
|
||||
if i > Config.maxSize {
|
||||
upReq.size = i
|
||||
|
|
Loading…
Reference in New Issue