Update upload.go
This commit is contained in:
parent
fb1ec8a64c
commit
486e4ed836
|
@ -229,8 +229,8 @@ 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 (strconf.Atoi(r.Header.Get("Content-Length")) > Config.maxSize {
|
||||
upReq.size = r.Header.Get("Content-Length")
|
||||
if strconv.Atoi(r.Header.Get("Content-Length")) > Config.maxSize {
|
||||
upReq.size = strconv.Atoi(r.Header.Get("Content-Length"))
|
||||
}
|
||||
}
|
||||
if r.Header.Get("Linx-Randomize") == "yes" {
|
||||
|
|
Loading…
Reference in New Issue