summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog4
-rw-r--r--src/plugins/irc/irc-protocol.c2
2 files changed, 5 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 88abd7ac4..530535ba4 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,7 +1,7 @@
WeeChat ChangeLog
=================
Sébastien Helleu <flashcode@flashtux.org>
-v0.4.1-rc2, 2013-05-11
+v0.4.1-rc2, 2013-05-12
This document lists all changes for each version.
@@ -58,6 +58,8 @@ Version 0.4.1 (under dev!)
list with arguments inside), guile >= 2.0 is now required (bug #38350)
* guile: fix crash on calls to callbacks during load of script (bug #38343)
* guile: fix compilation with guile 2.0
+* irc: fix refresh of nick in input bar when joining a new channel with op
+ status (bug #38969)
* irc: fix display of CTCP messages that contain bold attribute (bug #38895)
* irc: add support of "dh-aes" SASL mechanism (patch #8020)
* irc: fix duplicate nick completion when someone rejoins the channel with same
diff --git a/src/plugins/irc/irc-protocol.c b/src/plugins/irc/irc-protocol.c
index 00c1f6448..bde83fa0a 100644
--- a/src/plugins/irc/irc-protocol.c
+++ b/src/plugins/irc/irc-protocol.c
@@ -4127,6 +4127,8 @@ IRC_PROTOCOL_CALLBACK(366)
if (ptr_channel)
weechat_hashtable_set (ptr_channel->join_msg_received, command, "1");
+ weechat_bar_item_update ("input_prompt");
+
return WEECHAT_RC_OK;
}