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:
@@ -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
|
||||
|
||||
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user