Added error handling to 50-file.js

This commit is contained in:
tjkoury 2014-06-02 15:25:48 -04:00
parent 4e1d45b508
commit 785d4a66f0
1 changed files with 4 additions and 3 deletions

View File

@ -80,11 +80,12 @@ module.exports = function(RED) {
} else {
fs.readFile(filename,options,function(err,data) {
if (err) {
node.warn(err);
node.warn(err);
msg.error = err;
} else {
msg.payload = data;
node.send(msg);
}
}
node.send(msg);
});
}
});