mirror of
https://github.com/irssi/irssi.git
synced 2025-02-02 15:08:01 -05:00
don't display ignored quit messages..
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@1012 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
parent
b16f473e9b
commit
4957c7b98b
@ -249,10 +249,14 @@ static void sig_message_quit(SERVER_REC *server, const char *nick,
|
|||||||
for (tmp = server->channels; tmp != NULL; tmp = tmp->next) {
|
for (tmp = server->channels; tmp != NULL; tmp = tmp->next) {
|
||||||
CHANNEL_REC *rec = tmp->data;
|
CHANNEL_REC *rec = tmp->data;
|
||||||
|
|
||||||
if (!nicklist_find(rec, nick) ||
|
if (!nicklist_find(rec, nick))
|
||||||
ignore_check(server, nick, address, rec->name,
|
|
||||||
reason, MSGLEVEL_QUITS))
|
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
|
if (ignore_check(server, nick, address, rec->name,
|
||||||
|
reason, MSGLEVEL_QUITS)) {
|
||||||
|
count++;
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
if (print_channel == NULL ||
|
if (print_channel == NULL ||
|
||||||
active_win->active == (WI_ITEM_REC *) rec)
|
active_win->active == (WI_ITEM_REC *) rec)
|
||||||
|
Loading…
Reference in New Issue
Block a user