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

irc: fix nick color in private when option irc.look.nick_color_force is changed

This commit is contained in:
Sebastien Helleu
2011-05-02 16:31:21 +02:00
parent 97bc4b6eed
commit c417d6e135
2 changed files with 8 additions and 1 deletions
+5
View File
@@ -192,6 +192,11 @@ irc_config_compute_nick_colors ()
ptr_nick->color = strdup (irc_nick_find_color (ptr_nick->name));
}
}
if (ptr_channel->pv_remote_nick_color)
{
free (ptr_channel->pv_remote_nick_color);
ptr_channel->pv_remote_nick_color = NULL;
}
}
}