This commit is contained in:
Christopher Jeffrey 2016-04-19 06:19:51 -07:00
parent ed5cee5ce7
commit 5bf0824000
No known key found for this signature in database
GPG Key ID: 8962AB9DE6666BBD

View File

@ -56,7 +56,7 @@ TimeData.prototype.add = function add(host, time) {
if (this.samples.length >= this.limit)
return;
if (this.known[host])
if (this.known[host] != null)
return;
this.known[host] = sample;