Skip to content

Commit d4ce193

Browse files
author
Dave Conway-Jones
committed
Fix trigger to block properly until reset
Fix to Close node-red#764
1 parent 606305a commit d4ce193

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

nodes/core/core/89-trigger.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ module.exports = function(RED) {
5757
node.status({});
5858
}
5959
else {
60-
if (!tout) {
60+
if ((!tout) && (tout !== 0)) {
6161
if (node.op2type === "pay") { m2 = msg.payload; }
6262
else if (node.op2Templated) { m2 = mustache.render(node.op2,msg); }
6363
else { m2 = node.op2; }

0 commit comments

Comments
 (0)