Skip to content

Commit

Permalink
fix: Do not duplicate / in davPath
Browse files Browse the repository at this point in the history
`davRootPath` already contains a leading `/`

Signed-off-by: Louis Chemineau <[email protected]>
  • Loading branch information
artonge committed Jan 9, 2025
1 parent 4a3fcea commit 7e26adb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/files/src/views/Sidebar.vue
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ export default {
* @return {string}
*/
davPath() {
return `${davRemoteURL}/${davRootPath}${encodePath(this.file)}`
return `${davRemoteURL}${davRootPath}${encodePath(this.file)}`
},

/**
Expand Down

0 comments on commit 7e26adb

Please sign in to comment.