Fix ip ban

This commit is contained in:
calzoneman 2014-02-16 17:55:05 -06:00
parent f39e051699
commit e5333056e1
1 changed files with 1 additions and 1 deletions

View File

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