diff options
author | Robert Pösel <robyer@seznam.cz> | 2016-12-03 11:55:38 +0100 |
---|---|---|
committer | Robert Pösel <robyer@seznam.cz> | 2016-12-03 11:55:38 +0100 |
commit | fb1a9ccea78678aeffed8387fc4590d4f110b67f (patch) | |
tree | 53d6a296a884546f344283190186953f80075f55 /protocols/SkypeWeb | |
parent | a5d5de36daa8a810784f0e14a40ccb72bf6c8faf (diff) |
SkypeWeb: Fix saving unicode status messages
Diffstat (limited to 'protocols/SkypeWeb')
-rw-r--r-- | protocols/SkypeWeb/src/skype_contacts.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/SkypeWeb/src/skype_contacts.cpp b/protocols/SkypeWeb/src/skype_contacts.cpp index 30e7124a16..96c5cd1888 100644 --- a/protocols/SkypeWeb/src/skype_contacts.cpp +++ b/protocols/SkypeWeb/src/skype_contacts.cpp @@ -248,7 +248,7 @@ void CSkypeProto::LoadContactList(const NETLIBHTTPREQUEST *response) if (item["mood"])
{
- db_set_s(hContact, "CList", "StatusMsg", ptrA(RemoveHtml(ptrA(mir_utf8decodeA(item["mood"].as_string().c_str())))));
+ db_set_utf(hContact, "CList", "StatusMsg", ptrA(RemoveHtml(item["mood"].as_string().c_str())));
}
SetAvatarUrl(hContact, avatar_url);
|