mirror of https://github.com/calzoneman/sync.git
Fix wrong scope on ipList
This commit is contained in:
parent
6b9968a489
commit
c5a52d2ce5
|
@ -75,5 +75,5 @@ getTorIPs(function (err, ips) {
|
|||
});
|
||||
|
||||
exports.isTorExit = function (ip) {
|
||||
return this._ipList.indexOf(ip) >= 0;
|
||||
return _ipList.indexOf(ip) >= 0;
|
||||
};
|
||||
|
|
Loading…
Reference in New Issue