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

Merge pull request #204 from KindOne-/master

Do not let the ctcp action of an inital query go into the status window.
This commit is contained in:
Alexander Færøy 2015-01-17 23:33:32 +01:00
commit 2027e73977

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"))