forked from TrueCloudLab/rclone
protondrive: fix encoding of Root method
This fixes the TestIntegration/FsMkdir/FsPutFiles/FsIsFile/FsRoot integration test.
This commit is contained in:
parent
cdcb8b2a0a
commit
5750795324
1 changed files with 1 additions and 1 deletions
|
@ -244,7 +244,7 @@ func (f *Fs) Name() string {
|
|||
|
||||
// Root of the remote (as passed into NewFs)
|
||||
func (f *Fs) Root() string {
|
||||
return f.root
|
||||
return f.opt.Enc.ToStandardPath(f.root)
|
||||
}
|
||||
|
||||
// String converts this Fs to a string
|
||||
|
|
Loading…
Add table
Reference in a new issue