1
0
mirror of https://github.com/weechat/weechat.git synced 2026-06-29 22:36:38 +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
+6
View File
@@ -1,5 +1,11 @@
# WeeChat ChangeLog
## Version 4.6.1 (under dev)
### Fixed
- irc: display nick changes and quit messages when option irc.look.ignore_tag_messages is enabled ([#2241](https://github.com/weechat/weechat/issues/2241))
## Version 4.6.0 (2025-03-23)
### Changed
+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;