1
0
mirror of https://github.com/weechat/weechat.git synced 2026-07-02 15:53:12 +02:00

irc: display nick changes and quit messages when option irc.look.ignore_tag_messages is enabled (closes #2241)

This commit is contained in:
Sébastien Helleu
2025-03-28 12:08:40 +01:00
parent e39ef93903
commit 86d4da2fd1
2 changed files with 8 additions and 3 deletions
+2 -3
View File
@@ -2393,8 +2393,7 @@ IRC_PROTOCOL_CALLBACK(nick)
}
else
{
if (!irc_ignore_check (ctxt->server, ptr_channel->name,
ctxt->nick, ctxt->host))
if (!ctxt->ignore_remove)
{
ptr_nick_speaking = ((weechat_config_boolean (irc_config_look_smart_filter))
&& (weechat_config_boolean (irc_config_look_smart_filter_nick))) ?
@@ -3401,7 +3400,7 @@ IRC_PROTOCOL_CALLBACK(quit)
if (ptr_nick
|| (irc_server_strcasecmp (ctxt->server, ptr_channel->name, ctxt->nick) == 0))
{
if (!irc_ignore_check (ctxt->server, ptr_channel->name, ctxt->nick, ctxt->host))
if (!ctxt->ignore_remove)
{
/* display quit message */
ptr_nick_speaking = NULL;