Merge pull request #50108 from nextcloud/artonge/fix/sidebar_davpath

fix: Do not duplicate `/` in davPath
This commit is contained in:
Louis 2025-01-09 18:19:17 +01:00 committed by GitHub
commit a850a0bfc9
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
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