1
0
Fork 0
mirror of https://github.com/chrislusf/seaweedfs synced 2024-05-23 20:01:30 +02:00

fix 0 size (#3683)

This commit is contained in:
ImFantuan 2022-09-15 16:27:02 +08:00 committed by GitHub
parent bb880d6253
commit b64411bda8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -117,7 +117,7 @@ func (s3a *S3ApiServer) completeMultipartUpload(input *s3.CompleteMultipartUploa
}
}
}
entryName := filepath.Base(*input.Key)
dirName := filepath.Dir(*input.Key)
if dirName == "." {
@ -147,6 +147,7 @@ func (s3a *S3ApiServer) completeMultipartUpload(input *s3.CompleteMultipartUploa
} else if mime != "" {
entry.Attributes.Mime = mime
}
entry.Attributes.FileSize = uint64(offset)
})
if err != nil {