Fix the first form multi-part item is not a "file type part" problem in "ParseUpload()"
This commit is contained in:
@@ -60,11 +60,20 @@ func ParseUpload(r *http.Request) (fileName string, data []byte, mimeType string
|
|||||||
return
|
return
|
||||||
}
|
}
|
||||||
part, fe := form.NextPart()
|
part, fe := form.NextPart()
|
||||||
if fe != nil {
|
for {
|
||||||
glog.V(0).Infoln("Reading Multi part [ERROR]", fe)
|
if fe != nil {
|
||||||
e = fe
|
glog.V(0).Infoln("Reading Multi part [ERROR]", fe)
|
||||||
return
|
e = fe
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
if part.FileName() != "" {
|
||||||
|
break //found the first <file type> multi-part
|
||||||
|
}
|
||||||
|
|
||||||
|
part, fe = form.NextPart()
|
||||||
}
|
}
|
||||||
|
|
||||||
fileName = part.FileName()
|
fileName = part.FileName()
|
||||||
if fileName != "" {
|
if fileName != "" {
|
||||||
fileName = path.Base(fileName)
|
fileName = path.Base(fileName)
|
||||||
|
|||||||
Reference in New Issue
Block a user