1
0
mirror of https://github.com/irssi/irssi.git synced 2024-10-27 05:20:20 -04:00

Even if notice is from server, print it to given target, since it could be

meant for some channel.


git-svn-id: http://svn.irssi.org/repos/irssi/trunk@2050 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
Timo Sirainen 2001-11-18 13:43:05 +00:00 committed by cras
parent 58eb5f783d
commit bfe3e83b62

View File

@ -194,7 +194,7 @@ static void sig_message_irc_notice(SERVER_REC *server, const char *msg,
/* notice from server */
if (!ignore_check(server, nick, "",
target, msg, MSGLEVEL_SNOTES)) {
printformat(server, NULL, MSGLEVEL_SNOTES,
printformat(server, target, MSGLEVEL_SNOTES,
IRCTXT_NOTICE_SERVER, nick, msg);
}
return;