Fix node.lastSent initial value after refactoring.

This commit is contained in:
Mark Hindess 2014-10-30 08:19:52 +00:00
parent aff8a7802a
commit d859412785
1 changed files with 1 additions and 1 deletions

View File

@ -84,7 +84,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;