Thu, 25 Sep 2003 15:03:36 +0000
[gaim-migrate @ 7517]
This converts the sender nickname of IRC messages properly to UTF-8.
Thanks to qleap for pointing this fix out.
| src/protocols/irc/parse.c | file | annotate | diff | comparison | revisions |
--- a/src/protocols/irc/parse.c Thu Sep 25 04:01:21 2003 +0000 +++ b/src/protocols/irc/parse.c Thu Sep 25 15:03:36 2003 +0000 @@ -446,7 +446,9 @@ break; } } - (msgent->cb)(irc, msgent->name, from, args); + tmp = irc_recv_convert(irc, from); + (msgent->cb)(irc, msgent->name, tmp, args); + g_free(tmp); for (i = 0; i < strlen(msgent->format); i++) { g_free(args[i]); }