diff options
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | src/plugins/irc/irc-config.c | 5 |
2 files changed, 8 insertions, 1 deletions
@@ -1,7 +1,7 @@ WeeChat ChangeLog ================= Sébastien Helleu <flashcode@flashtux.org> -v0.3.5-rc2, 2011-05-01 +v0.3.5-rc2, 2011-05-02 Version 0.3.5 (under dev!) @@ -63,6 +63,8 @@ Version 0.3.5 (under dev!) (plugins: irc, relay, xfer, scripts) * aspell: add section "option" in aspell.conf for speller options (task #11083) * aspell: fix spellers used after switch of window (bug #32811) +* irc: fix nick color in private when option irc.look.nick_color_force is + changed * irc: fix tags for messages sent with /msg command (bug #33169) * irc: add new options irc.color.topic_old and irc.color.topic_new * irc: add option "ssl_priorities" in servers (task #10106, debian #624055) diff --git a/src/plugins/irc/irc-config.c b/src/plugins/irc/irc-config.c index 7a8dc0616..b3b3bffab 100644 --- a/src/plugins/irc/irc-config.c +++ b/src/plugins/irc/irc-config.c @@ -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; + } } } |