diff options
author | Alon Zakai <alonzakai@gmail.com> | 2013-10-28 15:16:16 -0700 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2013-10-28 15:16:16 -0700 |
commit | 2788d671c2a0ba52fab142fa51a7191f1728c7e6 (patch) | |
tree | bb9c6e720c3a63651e6337553b7a02870849712b /src | |
parent | b98b583f93c557ff3396cf1cc13146f9f878a9b0 (diff) |
do not normalize in getPath, since our paths elements are already ok
Diffstat (limited to 'src')
-rw-r--r-- | src/library_fs.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/library_fs.js b/src/library_fs.js index a263714a..53d0d3f1 100644 --- a/src/library_fs.js +++ b/src/library_fs.js @@ -95,7 +95,7 @@ mergeInto(LibraryManager.library, { var path; while (true) { if (FS.isRoot(node)) { - return path ? PATH.join2(node.mount.mountpoint, path) : node.mount.mountpoint; + return path ? node.mount.mountpoint + '/' + path : node.mount.mountpoint; } path = path ? node.name + '/' + path : node.name; node = node.parent; |