mirror of
https://github.com/rclone/rclone.git
synced 2024-11-25 18:04:55 +01:00
s3: fix DisableChecksum condition
This commit is contained in:
parent
e2773b3b4e
commit
c05bb63f96
@ -2040,7 +2040,7 @@ func (o *Object) Update(ctx context.Context, in io.Reader, src fs.ObjectInfo, op
|
||||
// read the md5sum if available for non multpart and if
|
||||
// disable checksum isn't present.
|
||||
var md5sum string
|
||||
if !multipart || !o.fs.opt.DisableChecksum {
|
||||
if !multipart && !o.fs.opt.DisableChecksum {
|
||||
hash, err := src.Hash(ctx, hash.MD5)
|
||||
if err == nil && matchMd5.MatchString(hash) {
|
||||
hashBytes, err := hex.DecodeString(hash)
|
||||
|
Loading…
Reference in New Issue
Block a user