mirror of
https://github.com/nextcloud/server.git
synced 2026-03-01 04:50:40 -05:00
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:
parent
2f754529ce
commit
5d078b3234
3 changed files with 4 additions and 4 deletions
|
|
@ -198,7 +198,7 @@ export default {
|
|||
* @return {string}
|
||||
*/
|
||||
davPath() {
|
||||
return `${davRemoteURL}/${davRootPath}${encodePath(this.file)}`
|
||||
return `${davRemoteURL}${davRootPath}${encodePath(this.file)}`
|
||||
},
|
||||
|
||||
/**
|
||||
|
|
|
|||
4
dist/files-sidebar.js
vendored
4
dist/files-sidebar.js
vendored
File diff suppressed because one or more lines are too long
2
dist/files-sidebar.js.map
vendored
2
dist/files-sidebar.js.map
vendored
File diff suppressed because one or more lines are too long
Loading…
Reference in a new issue