mirror of https://github.com/node-red/node-red.git
add check for property to trigger (temporary fix for debug)
parent
42b5635485
commit
419019a656
|
@ -120,7 +120,10 @@ module.exports = function(RED) {
|
|||
if (node.op2type === "flow" || node.op2type === "global") {
|
||||
node.topics[topic].m2 = RED.util.evaluateNodeProperty(node.op2,node.op2type,node,msg);
|
||||
}
|
||||
msg2.payload = node.topics[topic].m2;
|
||||
if (node.topics.hasOwnProperty(topic)) {
|
||||
msg2.payload = node.topics[topic].m2;
|
||||
}
|
||||
else { node.error("No topic:"+topic,msg); } // temporary fix to try to get more data.
|
||||
}
|
||||
delete node.topics[topic];
|
||||
node.status({});
|
||||
|
|
Loading…
Reference in New Issue