Browse Source

Merge pull request #58 from chrysn-pull-requests/fullpath-no-stripslash

Don't strip slashes from fullPath
Dom Hastings 5 years ago
parent
commit
dc56419f9f
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/lib/DAV/Entry.js

+ 1 - 1
src/lib/DAV/Entry.js

@@ -34,7 +34,7 @@ export default class Entry extends EventObject {
     super();
 
     this.#directory = directory;
-    this.#fullPath = joinPath(fullPath);
+    this.#fullPath = fullPath;
     [this.#path, this.#name] = this.getFilename();
     this.#title = title;
     this.#modified = modified;