fix BasicReadOnlyExplorer

pull/3094/head
yann300 7 years ago
parent e76bbc9f13
commit 0fec3f7546
  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