Update upload.go
This commit is contained in:
parent
49161feb7a
commit
fb1ec8a64c
|
@ -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 {
|
||||
if r.Header.Get("Content-Length") > Config.maxSize {
|
||||
if (strconf.Atoi(r.Header.Get("Content-Length")) > Config.maxSize {
|
||||
upReq.size = r.Header.Get("Content-Length")
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue