mirror of
https://github.com/node-red/node-red.git
synced 2023-10-10 13:36:53 +02:00
add check for property to trigger (temporary fix for debug)
This commit is contained in:
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
Block a user