always return null for the file if not found

pull/14/head
yann300 4 years ago
parent bf405cd0b5
commit 8f20b7e286
  1. 4
      src/app/files/remixDProvider.js

@ -96,10 +96,10 @@ module.exports = class RemixDProvider {
if (file.readonly) { this._readOnlyFiles[path] = 1 } if (file.readonly) { this._readOnlyFiles[path] = 1 }
cb(null, file.content) cb(null, file.content)
}).catch((error) => { }).catch((error) => {
if (error) console.log(error)
// display the last known content. // display the last known content.
// TODO should perhaps better warn the user that the file is not synced. // TODO should perhaps better warn the user that the file is not synced.
if (this.filesContent[path]) return cb(null, this.filesContent[path]) return cb(null, this.filesContent[path])
else cb(error)
}) })
} }

Loading…
Cancel
Save