1
0
mirror of https://github.com/weechat/weechat.git synced 2026-06-28 05:46:38 +02:00

irc: fix refresh of nick in input bar when joining a new channel with op status (bug #38969)

This commit is contained in:
Sebastien Helleu
2013-05-12 16:06:53 +02:00
parent 19ed7740b1
commit 4ad5f7bbc9
2 changed files with 5 additions and 1 deletions
+3 -1
View File
@@ -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
+2
View File
@@ -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;
}