1
0
mirror of https://github.com/irssi/irssi.git synced 2024-09-15 04:28:09 -04:00

Merge pull request #396 from mauke/master

make /knockout use /unban to remove bans
This commit is contained in:
ailin-nemui 2016-01-08 20:27:47 +01:00
commit 12f4f1fa24

View File

@ -749,7 +749,7 @@ static void knockout_timeout_server(IRC_SERVER_REC *server)
next = tmp->next; next = tmp->next;
if (rec->unban_time <= now) { if (rec->unban_time <= now) {
/* timeout, unban. */ /* timeout, unban. */
ban_remove(rec->channel, rec->ban); signal_emit("command unban", 3, rec->ban, server, rec->channel);
knockout_destroy(server, rec); knockout_destroy(server, rec);
} }
} }