mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2024-01-19 02:48:24 +00:00
set file name to base file name
fixing https://github.com/chrislusf/seaweedfs/issues/632
This commit is contained in:
parent
b2b8a003c1
commit
fc3924ac70
|
@ -104,7 +104,7 @@ func newFilePart(fullPathFilename string) (ret FilePart, err error) {
|
|||
ret.FileSize = fi.Size()
|
||||
ext := strings.ToLower(path.Ext(fullPathFilename))
|
||||
ret.IsGzipped = ext == ".gz"
|
||||
ret.FileName = fullPathFilename
|
||||
ret.FileName = fi.Name()
|
||||
if ext != "" {
|
||||
ret.MimeType = mime.TypeByExtension(ext)
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue