backend/local: fix %!w(<nil>) in "failed to read directory" error

This commit is contained in:
Marks Polakovs 2022-12-25 14:30:37 +02:00 committed by albertony
parent 1925ceaade
commit ad5395e953
1 changed files with 1 additions and 1 deletions

View File

@ -503,7 +503,7 @@ func (f *Fs) List(ctx context.Context, dir string) (entries fs.DirEntries, err e
continue
}
}
err = fmt.Errorf("failed to read directory %q: %w", namepath, err)
err = fmt.Errorf("failed to read directory %q: %w", namepath, fierr)
fs.Errorf(dir, "%v", fierr)
_ = accounting.Stats(ctx).Error(fserrors.NoRetryError(fierr)) // fail the sync
continue