fix BasicReadOnlyExplorer

pull/1/head
yann300 7 years ago
parent e2328bed71
commit 5dd36768e3
  1. 3
      src/app/files/basicReadOnlyExplorer.js

@ -23,7 +23,8 @@ class BasicReadOnlyExplorer {
exists (path) {
if (!this.files) return false
return this.files[path] !== undefined
var unprefixedPath = this.removePrefix(path)
return this.files[unprefixedPath] !== undefined
}
get (path, cb) {

Loading…
Cancel
Save