mirror of
https://github.com/node-red/node-red.git
synced 2023-10-10 13:36:53 +02:00
parent
9ec7bb8d41
commit
78eae99bd4
@ -70,8 +70,9 @@ module.exports = function(RED) {
|
||||
if (node.duration === 0) { tout = 0; }
|
||||
else {
|
||||
tout = setTimeout(function() {
|
||||
msg.payload = m2;
|
||||
if (node.op2type !== "nul") { node.send(msg); }
|
||||
var msg2 = RED.util.cloneMessage(msg);
|
||||
msg2.payload = m2;
|
||||
if (node.op2type !== "nul") { node.send(msg2); }
|
||||
tout = null;
|
||||
node.status({});
|
||||
},node.duration);
|
||||
@ -82,8 +83,9 @@ module.exports = function(RED) {
|
||||
clearTimeout(tout);
|
||||
if (node.op2type === "payl") { m2 = msg.payload; }
|
||||
tout = setTimeout(function() {
|
||||
msg.payload = m2;
|
||||
if (node.op2type !== "nul") { node.send(msg); }
|
||||
var msg2 = RED.util.cloneMessage(msg);
|
||||
msg2.payload = m2;
|
||||
if (node.op2type !== "nul") { node.send(msg2); }
|
||||
tout = null;
|
||||
node.status({});
|
||||
},node.duration);
|
||||
|
Loading…
Reference in New Issue
Block a user