Explorar o código

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

Don't strip slashes from fullPath
Dom Hastings %!s(int64=5) %!d(string=hai) anos
pai
achega
dc56419f9f
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  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;