# HG changeset patch # User Konosuke Watanabe # Date 1252432864 -32400 # Node ID 7c33fccedea8f0f43fb894a19453db389e16a3c6 # Parent 493f48f8d17fc16475c2fb60f094d1cfae54d862 Fix Yahoo Japan's buddy list problem: buddies don't become online if they belong to the group which name has Japanese character. diff -r 493f48f8d17f -r 7c33fccedea8 libpurple/protocols/yahoo/util.c --- a/libpurple/protocols/yahoo/util.c Mon Sep 07 20:39:36 2009 +0900 +++ b/libpurple/protocols/yahoo/util.c Wed Sep 09 03:01:04 2009 +0900 @@ -158,8 +158,8 @@ return ret; } - if (yd->jp && !utf8) - from_codeset = "SHIFT_JIS"; + if (yd->jp) + from_codeset = "UTF-8"; else from_codeset = purple_account_get_string(purple_connection_get_account(gc), "local_charset", "ISO-8859-1");