fix set function

pull/1/head
yann300 7 years ago
parent 05fa91e03a
commit d6b51c96b9
  1. 3
      src/app/files/basicReadOnlyExplorer.js

@ -38,7 +38,8 @@ class BasicReadOnlyExplorer {
}
set (path, content, cb) {
this.addReadOnly(path, content)
var unprefixedPath = this.removePrefix(path)
this.addReadOnly(unprefixedPath, content)
if (cb) cb()
return true
}

Loading…
Cancel
Save