1
0
mirror of https://github.com/weechat/weechat.git synced 2026-06-12 14:14:48 +02:00

irc: fix title of private buffers wrongly set to own address when capability echo-message is enabled (issue #2016)

This commit is contained in:
Sébastien Helleu
2023-09-14 08:04:44 +02:00
parent ef99d544fa
commit 4e173c1972
2 changed files with 2 additions and 2 deletions
+1
View File
@@ -86,6 +86,7 @@ Bug fixes::
* core: fix integer overflow when setting integer option with `++N` or `--N`
* core: fix increment/decrement of options weechat.notify.*
* irc: fix title of private buffers wrongly set to own address when capability echo-message is enabled (issue #2016)
* irc: add missing tags on multiline messages (issue #1987)
* irc: fix redirection of command `/list` when the reply doesn't start with message 321 (start of /list)
* irc: fix wrong time displayed for CTCP messages received from self nick (issue #2000)
+1 -2
View File
@@ -3286,8 +3286,6 @@ IRC_PROTOCOL_CALLBACK(privmsg)
IRC_CHANNEL_TYPING_STATE_OFF);
}
irc_channel_set_topic (ptr_channel, address);
if (nick_is_me)
{
str_color = irc_color_for_tags (
@@ -3296,6 +3294,7 @@ IRC_PROTOCOL_CALLBACK(privmsg)
}
else
{
irc_channel_set_topic (ptr_channel, address);
if (weechat_config_boolean (irc_config_look_color_pv_nick_like_channel))
{
color = irc_nick_find_color_name (server, nick);