mirror of
https://github.com/rclone/rclone
synced 2024-11-21 22:50:16 +01:00
s3: fix multpart streaming uploads of 0 length files
This commit is contained in:
parent
2db0e23584
commit
bb58040d9c
@ -5427,8 +5427,8 @@ func (w *s3ChunkWriter) WriteChunk(ctx context.Context, chunkNumber int, reader
|
||||
if err != nil {
|
||||
return -1, err
|
||||
}
|
||||
// If no data read, don't write the chunk
|
||||
if currentChunkSize == 0 {
|
||||
// If no data read and not the first chunk, don't write the chunk
|
||||
if currentChunkSize == 0 && chunkNumber != 0 {
|
||||
return 0, nil
|
||||
}
|
||||
md5sumBinary := m.Sum([]byte{})
|
||||
|
Loading…
Reference in New Issue
Block a user