1
0
mirror of https://github.com/irssi/irssi.git synced 2024-09-29 04:45:57 -04:00

Another /IGNORE -replies fix

git-svn-id: http://svn.irssi.org/repos/irssi/trunk@460 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
Timo Sirainen 2000-07-11 09:30:43 +00:00 committed by cras
parent e43c300e78
commit 02495002e4

View File

@ -106,7 +106,7 @@ int ignore_check(IRC_SERVER_REC *server, const char *nick, const char *host,
irc_mask_match_address(rec->mask, nick, host);
if (!ok) {
/* nick didn't match, but maybe this is a reply to nick? */
if (!rec->replies || channel == NULL ||
if (!rec->replies || channel == NULL || text == NULL ||
!ignore_check_replies(rec, server, channel, text))
continue;
}