summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--protocols/SkypeWeb/src/skype_profile.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/protocols/SkypeWeb/src/skype_profile.cpp b/protocols/SkypeWeb/src/skype_profile.cpp
index 3290041229..b566c50b63 100644
--- a/protocols/SkypeWeb/src/skype_profile.cpp
+++ b/protocols/SkypeWeb/src/skype_profile.cpp
@@ -429,9 +429,9 @@ void CSkypeProto::UpdateProfileStatusMessage(JSONNODE *root, MCONTACT hContact)
JSONNODE *node = json_get(root, "mood");
CMString province = mir_t2a(ptrT(json_as_string(node)));
if (!province.IsEmpty() && province != "null")
- setTString(hContact, "StatusMsg", province);
+ db_set_ts(hContact, "CList", "StatusMsg", province);
else
- delSetting(hContact, "StatusMsg");
+ db_unset(hContact, "CList", "StatusMsg");
}
void CSkypeProto::UpdateProfileXStatusMessage(JSONNODE *root, MCONTACT hContact)