mirror of
https://github.com/rclone/rclone.git
synced 2025-01-11 08:49:37 +01:00
jottacloud: avoid double url escaping of device/mountpoint - fixes #4697
This commit is contained in:
parent
4e2b5389d7
commit
ffdd0719e7
@ -553,7 +553,7 @@ func (f *Fs) setEndpointURL() {
|
|||||||
if f.opt.Mountpoint == "" {
|
if f.opt.Mountpoint == "" {
|
||||||
f.opt.Mountpoint = defaultMountpoint
|
f.opt.Mountpoint = defaultMountpoint
|
||||||
}
|
}
|
||||||
f.endpointURL = urlPathEscape(path.Join(f.user, f.opt.Device, f.opt.Mountpoint))
|
f.endpointURL = path.Join(f.user, f.opt.Device, f.opt.Mountpoint)
|
||||||
}
|
}
|
||||||
|
|
||||||
// readMetaDataForPath reads the metadata from the path
|
// readMetaDataForPath reads the metadata from the path
|
||||||
|
Loading…
Reference in New Issue
Block a user