diff options
author | Sebastien Helleu <flashcode@flashtux.org> | 2010-12-15 17:57:43 +0100 |
---|---|---|
committer | Sebastien Helleu <flashcode@flashtux.org> | 2010-12-15 17:57:43 +0100 |
commit | 987044405bf615b00fb9281badf81799ef0482d9 (patch) | |
tree | 809763f7a1fb2e59611b1834be0926ddc917cf60 | |
parent | 62dc84f4e9e531c5a7389b6bcf15aec405d11268 (diff) | |
download | weechat-987044405bf615b00fb9281badf81799ef0482d9.zip |
Fix bug with charset decoding on IRC private buffers (decoding was made for local nick instead of remote nick) (bug #31890)
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | src/plugins/irc/irc-server.c | 2 |
2 files changed, 4 insertions, 2 deletions
@@ -1,7 +1,7 @@ WeeChat ChangeLog ================= Sébastien Helleu <flashcode@flashtux.org> -v0.3.4-rc1, 2010-12-13 +v0.3.4-rc1, 2010-12-15 Version 0.3.4 (under dev!) @@ -42,6 +42,8 @@ Version 0.3.4 (under dev!) nicklist_nick_get_integer, nicklist_nick_get_string, nicklist_nick_get_pointer, nicklist_nick_set * alias: complete with alias value for second argument of command /alias +* irc: fix bug with charset decoding on private buffers (decoding was made for + local nick instead of remote nick) (bug #31890) * irc: add option "-switch" to commands /connect and /reconnect * irc: allow command /reconnect on servers that are not currently connected (bug #30726) diff --git a/src/plugins/irc/irc-server.c b/src/plugins/irc/irc-server.c index 86c18868e..a1a41129b 100644 --- a/src/plugins/irc/irc-server.c +++ b/src/plugins/irc/irc-server.c @@ -1946,7 +1946,7 @@ irc_server_msgq_flush () &channel, &arguments); /* convert charset for message */ - if (channel) + if (channel && irc_channel_is_channel (channel)) { snprintf (modifier_data, sizeof (modifier_data), "%s.%s.%s", |