Fix ip ban

This commit is contained in:
calzoneman 2014-02-16 17:55:05 -06:00
parent f39e051699
commit e5333056e1

View file

@ -857,7 +857,7 @@ Channel.prototype.handleBanAllIP = function (actor, name, reason, range) {
} }
ips.forEach(function (ip) { ips.forEach(function (ip) {
self.tryBanIP(actor, ip, name, range); self.banIP(actor, ip, name, range);
}); });
}); });
}; };