Skip to content

Commit

Permalink
feat: fix the logtics of client joining webdav url
Browse files Browse the repository at this point in the history
  • Loading branch information
butterfly committed Apr 12, 2024
1 parent b72d7fb commit 55d7014
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions app/utils/cloud/webdav.ts
Original file line number Diff line number Diff line change
Expand Up @@ -63,9 +63,9 @@ export function createWebDavClient(store: SyncStore) {
};
},
path(path: string, proxyUrl: string = "") {
if (!path.endsWith("/")) {
path += "/";
}
// if (!path.endsWith("/")) {
// path += "/";
// }
if (path.startsWith("/")) {
path = path.slice(1);
}
Expand Down

0 comments on commit 55d7014

Please sign in to comment.