1
0
mirror of https://github.com/irssi/irssi.git synced 2024-09-01 04:14:16 -04:00

Do not let the ctcp action of an inital query go into the status window.

This commit is contained in:
KindOne 2015-01-17 08:11:10 -05:00
parent b1de3c3f38
commit 4bf9e1f16a

View File

@ -179,7 +179,7 @@ static void sig_message_irc_action(IRC_SERVER_REC *server, const char *msg,
item = irc_channel_find(server, target);
} else {
own = (!strcmp(nick, server->nick));
item = privmsg_get_query(SERVER(server), own ? nick : target, FALSE, level);
item = privmsg_get_query(SERVER(server), own ? target : nick, FALSE, level);
}
if (settings_get_bool("emphasis"))