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
1 changed files with 1 additions and 1 deletions

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;
}