1
0
mirror of https://github.com/weechat/weechat.git synced 2026-06-29 06:16:40 +02:00

irc: add nick changes in the hotlist (except self nick change)

This commit is contained in:
Sébastien Helleu
2020-02-01 23:02:55 +01:00
parent 95e34c71d6
commit 4e2718d234
2 changed files with 7 additions and 6 deletions
+6 -6
View File
@@ -1640,9 +1640,6 @@ IRC_PROTOCOL_CALLBACK(nick)
{
ptr_nick_found = ptr_nick;
/* temporary disable hotlist */
weechat_buffer_set (NULL, "hotlist", "-");
/* set host in nick if needed */
irc_nick_set_host (ptr_nick, address);
@@ -1651,6 +1648,9 @@ IRC_PROTOCOL_CALLBACK(nick)
irc_nick_change (server, ptr_channel, ptr_nick, new_nick);
if (local_nick)
{
/* temporary disable hotlist */
weechat_buffer_set (NULL, "hotlist", "-");
snprintf (str_tags, sizeof (str_tags),
"irc_nick1_%s,irc_nick2_%s",
nick,
@@ -1667,6 +1667,9 @@ IRC_PROTOCOL_CALLBACK(nick)
IRC_COLOR_CHAT_NICK_SELF,
new_nick,
IRC_COLOR_RESET);
/* enable hotlist */
weechat_buffer_set (NULL, "hotlist", "+");
}
else
{
@@ -1712,9 +1715,6 @@ IRC_PROTOCOL_CALLBACK(nick)
if (old_color)
free (old_color);
/* enable hotlist */
weechat_buffer_set (NULL, "hotlist", "+");
}
break;
}