set file name to base file name

fixing https://github.com/chrislusf/seaweedfs/issues/632
This commit is contained in:
Chris Lu 2018-02-26 08:01:23 -08:00
parent b2b8a003c1
commit fc3924ac70

View file

@ -104,7 +104,7 @@ func newFilePart(fullPathFilename string) (ret FilePart, err error) {
ret.FileSize = fi.Size() ret.FileSize = fi.Size()
ext := strings.ToLower(path.Ext(fullPathFilename)) ext := strings.ToLower(path.Ext(fullPathFilename))
ret.IsGzipped = ext == ".gz" ret.IsGzipped = ext == ".gz"
ret.FileName = fullPathFilename ret.FileName = fi.Name()
if ext != "" { if ext != "" {
ret.MimeType = mime.TypeByExtension(ext) ret.MimeType = mime.TypeByExtension(ext)
} }