mirror of
https://github.com/irssi/irssi.git
synced 2026-08-10 04:13:32 +02:00
Fix logic in how actions are printed for other protocols
This causes subsequent window_item_set_active() check, further down in the same function, to evaluate correctly, and getting the action message printed using correct format.
This commit is contained in:
parent
1c9990acab
commit
3057c9e920
1 changed files with 1 additions and 1 deletions
|
|
@ -208,7 +208,7 @@ static void sig_message_irc_action(IRC_SERVER_REC *server, const char *msg,
|
|||
return;
|
||||
|
||||
if (server_ischannel(SERVER(server), target)) {
|
||||
item = irc_channel_find(server, target);
|
||||
item = channel_find(SERVER(server), target);
|
||||
} else {
|
||||
own = (!g_strcmp0(nick, server->nick));
|
||||
item = privmsg_get_query(SERVER(server), own ? target : nick, FALSE, level);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue