Fix wrong scope on ipList

This commit is contained in:
calzoneman 2014-08-14 21:45:25 -05:00
parent 6b9968a489
commit c5a52d2ce5
1 changed files with 1 additions and 1 deletions

View File

@ -75,5 +75,5 @@ getTorIPs(function (err, ips) {
});
exports.isTorExit = function (ip) {
return this._ipList.indexOf(ip) >= 0;
return _ipList.indexOf(ip) >= 0;
};