From ffdd0719e761a3c76c06903df5daf36958dee772 Mon Sep 17 00:00:00 2001 From: albertony <12441419+albertony@users.noreply.github.com> Date: Tue, 20 Oct 2020 12:43:28 +0200 Subject: [PATCH] jottacloud: avoid double url escaping of device/mountpoint - fixes #4697 --- backend/jottacloud/jottacloud.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/jottacloud/jottacloud.go b/backend/jottacloud/jottacloud.go index 29c307183..9d677c8f8 100644 --- a/backend/jottacloud/jottacloud.go +++ b/backend/jottacloud/jottacloud.go @@ -553,7 +553,7 @@ func (f *Fs) setEndpointURL() { if f.opt.Mountpoint == "" { 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