summaryrefslogtreecommitdiff
path: root/protocols
diff options
context:
space:
mode:
authorGeorge Hazan <ghazan@miranda.im>2019-09-27 14:55:58 +0300
committerGeorge Hazan <ghazan@miranda.im>2019-09-27 14:55:58 +0300
commit36b134876688ed3d013f54cea0229af02ef909f0 (patch)
tree4cb6f4e3531500f4bf70122cb704118cf0168ebc /protocols
parent17575bcf8d9725ab3d1d6a469087346a16b13fe4 (diff)
SkypeWeb: thy shall now manipulate with Hidden attribute just for fun
Diffstat (limited to 'protocols')
-rw-r--r--protocols/SkypeWeb/src/skype_contacts.cpp8
1 files changed, 2 insertions, 6 deletions
diff --git a/protocols/SkypeWeb/src/skype_contacts.cpp b/protocols/SkypeWeb/src/skype_contacts.cpp
index 57fcdc1355..2060eac5ab 100644
--- a/protocols/SkypeWeb/src/skype_contacts.cpp
+++ b/protocols/SkypeWeb/src/skype_contacts.cpp
@@ -180,14 +180,10 @@ void CSkypeProto::LoadContactList(const NETLIBHTTPREQUEST *response)
}
else setByte(hContact, "Grant", 1);
- if (item["blocked"].as_bool()) {
- Clist_HideContact(hContact);
+ if (item["blocked"].as_bool())
setByte(hContact, "IsBlocked", 1);
- }
- else {
- Clist_HideContact(hContact, false);
+ else
delSetting(hContact, "IsBlocked");
- }
ptrW wszGroup(Clist_GetGroup(hContact));
if (wszGroup == nullptr) {