1
0
mirror of https://github.com/node-red/node-red.git synced 2023-10-10 13:36:53 +02:00

Fix msg.reset handling in Delay node

Fixes #3074
This commit is contained in:
Nick O'Leary 2021-07-21 11:32:45 +01:00
parent a8d093bacd
commit 68fb5089f8
No known key found for this signature in database
GPG Key ID: 4F2157149161A6C9

View File

@ -209,7 +209,7 @@ module.exports = function(RED) {
delete node.lastSent;
node.buffer = [];
node.rate = node.fixedrate;
node.status(node.status({fill:"blue",shape:"ring",text:0}));
node.status({fill:"blue",shape:"ring",text:0});
done();
return;
}