summaryrefslogtreecommitdiff
path: root/protocols/SkypeWeb/src/skype_contacts.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'protocols/SkypeWeb/src/skype_contacts.cpp')
-rw-r--r--protocols/SkypeWeb/src/skype_contacts.cpp7
1 files changed, 6 insertions, 1 deletions
diff --git a/protocols/SkypeWeb/src/skype_contacts.cpp b/protocols/SkypeWeb/src/skype_contacts.cpp
index 174cc0e7fd..c4aecd4825 100644
--- a/protocols/SkypeWeb/src/skype_contacts.cpp
+++ b/protocols/SkypeWeb/src/skype_contacts.cpp
@@ -176,7 +176,7 @@ void CSkypeProto::LoadContactsInfo(const NETLIBHTTPREQUEST *response)
{
UpdateProfileCountry(item, hContact);
UpdateProfileCity(item, hContact);
- UpdateProfileStatusMessage(item, hContact);
+ UpdateProfileXStatusMessage(item, hContact);
}
}
}
@@ -249,6 +249,11 @@ void CSkypeProto::LoadContactList(const NETLIBHTTPREQUEST *response)
if (last_name)
setTString(hContact, "LastName", last_name);
+ if (item["mood"])
+ {
+ db_set_s(hContact, "CList", "StatusMsg", ptrA(RemoveHtml(ptrA(mir_utf8decodeA(item["mood"].as_string().c_str())))));
+ }
+
SetAvatarUrl(hContact, avatar_url);
ReloadAvatarInfo(hContact);