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

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;