ensure we know if a file exists

pull/1/head
yann300 7 years ago
parent 32708b8a7c
commit 8eb9ac2018
  1. 2
      src/app/files/shared-folder.js

@ -12,6 +12,7 @@ function buildList (self, path = '', callback) {
if (!counter) callback(null, fileTree)
for (var i = 0, name, len = counter; i < len; i++) {
name = list[i]
self.files[path] = path
if (filesList[name].isDirectory) {
setFolder(self, path, name, fileTree, finish)
} else {
@ -56,6 +57,7 @@ module.exports = class SharedFolder {
this.error = { 'EEXIST': 'File already exists' }
this._isReady = false
this.filesContent = {}
this.files = {}
remixd.event.register('notified', (data) => {
if (data.scope === 'sharedfolder') {

Loading…
Cancel
Save