1
0
mirror of https://github.com/irssi/irssi.git synced 2024-12-04 14:46:39 -05:00

Bug #748: Fix /ignore -network. Patch by pyropeter

git-svn-id: file:///var/www/svn.irssi.org/SVN/irssi/trunk@5175 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
Wouter Coekaerts 2010-07-13 17:56:02 +00:00 committed by coekie
parent cbe61df25c
commit ab33ac15af

View File

@ -154,7 +154,7 @@ static void cmd_ignore(const char *data)
channels = (chanarg == NULL || *chanarg == '\0') ? NULL :
g_strsplit(chanarg, ",", -1);
rec = patternarg != NULL ? NULL: ignore_find(NULL, mask, channels);
rec = patternarg != NULL ? NULL: ignore_find(servertag, mask, channels);
new_ignore = rec == NULL;
if (rec == NULL) {