1
0
mirror of https://github.com/node-red/node-red.git synced 2023-10-10 13:36:53 +02:00

File In node loses message properties

This commit is contained in:
Nick O'Leary 2014-05-08 11:13:35 +01:00
parent ba126e90d9
commit 8e7fc011f0

View File

@ -81,7 +81,8 @@ module.exports = function(RED) {
if (err) {
node.warn(err);
} else {
node.send({payload:data});
msg.payload = data;
node.send(msg);
}
});
}