mirror of
https://github.com/rclone/rclone.git
synced 2025-01-19 04:47:54 +02:00
Ignore return from patch request on failure.
This commit is contained in:
parent
09fbbdbb04
commit
445fc55772
@ -749,9 +749,9 @@ func (f *Fs) MergeDirs(dirs []fs.Directory) error {
|
||||
for _, info := range infos {
|
||||
fs.Infof(srcDir, "merging %q", info.Title)
|
||||
// Move the file into the destination
|
||||
info.Parents = []*drive.ParentReference{{Id: dstDir.ID()}}
|
||||
err = f.pacer.Call(func() (bool, error) {
|
||||
info.Parents = []*drive.ParentReference{{Id: dstDir.ID()}}
|
||||
info, err = f.svc.Files.Patch(info.Id, info).SetModifiedDate(true).Fields(googleapi.Field(partialFields)).SupportsTeamDrives(f.isTeamDrive).Do()
|
||||
_, err = f.svc.Files.Patch(info.Id, info).SetModifiedDate(true).Fields(googleapi.Field(partialFields)).SupportsTeamDrives(f.isTeamDrive).Do()
|
||||
return shouldRetry(err)
|
||||
})
|
||||
if err != nil {
|
||||
|
Loading…
x
Reference in New Issue
Block a user