drive: add missing seek to start on retries of chunked uploads

follow up to ee13bc6775
This commit is contained in:
Stefan Breunig 2017-07-05 18:51:04 +02:00
parent ee13bc6775
commit 51866fbd34

View File

@ -157,6 +157,7 @@ func (rx *resumableUpload) transferStatus() (start int64, err error) {
// Transfer a chunk - caller must call googleapi.CloseBody(res) if err == nil || res != nil
func (rx *resumableUpload) transferChunk(start int64, chunk io.ReadSeeker, chunkSize int64) (int, error) {
_, _ = chunk.Seek(0, 0)
req := rx.makeRequest(start, chunk, chunkSize)
res, err := rx.f.client.Do(req)
if err != nil {