mirror of
https://github.com/rclone/rclone.git
synced 2024-11-23 02:01:25 +08:00
operations: fix error message on delete to have file name - fixes #7355
This commit is contained in:
parent
48a8bfa6b3
commit
2de084944b
|
@ -772,7 +772,7 @@ func DeleteFilesWithBackupDir(ctx context.Context, toBeDeleted fs.ObjectsChan, b
|
||||||
if err != nil {
|
if err != nil {
|
||||||
errorCount.Add(1)
|
errorCount.Add(1)
|
||||||
if fserrors.IsFatalError(err) {
|
if fserrors.IsFatalError(err) {
|
||||||
fs.Errorf(nil, "Got fatal error on delete: %s", err)
|
fs.Errorf(dst, "Got fatal error on delete: %s", err)
|
||||||
fatalErrorCount.Add(1)
|
fatalErrorCount.Add(1)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user