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

Merge pull request #460 from hindessm/fix-lastSent-initial-value

Fix node.lastSent initial value after refactoring.
This commit is contained in:
Nick O'Leary 2015-02-03 13:27:48 +00:00
commit 07acc6642f

View File

@ -74,7 +74,7 @@ module.exports = function(RED) {
this.buffer = [];
this.intervalID = -1;
this.randomID = -1;
this.lastSent;
this.lastSent = null;
this.drop = n.drop;
var node = this;