fix: Do not duplicate / in davPath

`davRootPath` already contains a leading `/`

Signed-off-by: Louis Chemineau <louis@chmn.me>
Signed-off-by: nextcloud-command <nextcloud-command@users.noreply.github.com>
This commit is contained in:
Louis Chemineau 2025-01-09 13:13:55 +01:00
parent 2f754529ce
commit 5d078b3234
No known key found for this signature in database
3 changed files with 4 additions and 4 deletions

View file

@ -198,7 +198,7 @@ export default {
* @return {string}
*/
davPath() {
return `${davRemoteURL}/${davRootPath}${encodePath(this.file)}`
return `${davRemoteURL}${davRootPath}${encodePath(this.file)}`
},
/**

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long