dropbox: fix error when renaming directories - fixes #1708

This commit is contained in:
Nick Craig-Wood 2017-10-02 11:21:16 +01:00
parent a1d942e5c3
commit b7521c0fe2

View File

@ -629,7 +629,7 @@ func (f *Fs) DirMove(src fs.Fs, srcRemote, dstRemote string) error {
dstPath := path.Join(f.slashRoot, dstRemote)
// Check if destination exists
_, err := f.getDirMetadata(f.slashRoot)
_, err := f.getDirMetadata(dstPath)
if err == nil {
return fs.ErrorDirExists
} else if err != fs.ErrorDirNotFound {