mirror of
https://github.com/rclone/rclone.git
synced 2024-11-22 08:23:47 +01:00
webdav: nextcloud chunking: add more guidance for the user to check the config
This commit is contained in:
parent
07cf5f1d25
commit
415f4b2b93
@ -53,7 +53,7 @@ func (o *Object) getChunksUploadDir() (string, error) {
|
||||
func (f *Fs) getChunksUploadURL() (string, error) {
|
||||
submatch := nextCloudURLRegex.FindStringSubmatch(f.endpointURL)
|
||||
if submatch == nil {
|
||||
return "", errors.New("the remote url looks incorrect. Note that nextcloud chunked uploads require you to use the /dav/files/USER endpoint instead of /webdav")
|
||||
return "", errors.New("the remote url looks incorrect. Note that nextcloud chunked uploads require you to use the /dav/files/USER endpoint instead of /webdav. Please check 'rclone config show remotename' to verify that the url field ends in /dav/files/USERNAME")
|
||||
}
|
||||
|
||||
baseURL, user := submatch[1], submatch[2]
|
||||
|
Loading…
Reference in New Issue
Block a user