mirror of
https://github.com/node-red/node-red.git
synced 2025-03-01 10:36:34 +00:00
fix: use msg not m
This commit is contained in:
parent
94a999ba52
commit
253de14967
@ -415,9 +415,9 @@ module.exports = function(RED) {
|
|||||||
.on('end', function() {
|
.on('end', function() {
|
||||||
if (node.chunk === false) {
|
if (node.chunk === false) {
|
||||||
if (node.format === "utf8") {
|
if (node.format === "utf8") {
|
||||||
RED.util.setMessageProperty(m,node.propertyOut,decode(lines, node.encoding));
|
RED.util.setMessageProperty(msg,node.propertyOut,decode(lines, node.encoding));
|
||||||
} else {
|
} else {
|
||||||
RED.util.setMessageProperty(m,node.propertyOut,lines);
|
RED.util.setMessageProperty(msg,node.propertyOut,lines);
|
||||||
}
|
}
|
||||||
nodeSend(msg);
|
nodeSend(msg);
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user