From 8f20b7e28605df5a885b25b783f2106994fd38ea Mon Sep 17 00:00:00 2001 From: yann300 Date: Thu, 9 Jul 2020 12:20:35 +0200 Subject: [PATCH] always return null for the file if not found --- src/app/files/remixDProvider.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/files/remixDProvider.js b/src/app/files/remixDProvider.js index 6c43072257e..30fe62bf147 100644 --- a/src/app/files/remixDProvider.js +++ b/src/app/files/remixDProvider.js @@ -96,10 +96,10 @@ module.exports = class RemixDProvider { if (file.readonly) { this._readOnlyFiles[path] = 1 } cb(null, file.content) }).catch((error) => { + if (error) console.log(error) // display the last known content. // TODO should perhaps better warn the user that the file is not synced. - if (this.filesContent[path]) return cb(null, this.filesContent[path]) - else cb(error) + return cb(null, this.filesContent[path]) }) }