diff options
author | George Hazan <ghazan@miranda.im> | 2019-09-27 14:55:58 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2019-09-27 14:55:58 +0300 |
commit | 36b134876688ed3d013f54cea0229af02ef909f0 (patch) | |
tree | 4cb6f4e3531500f4bf70122cb704118cf0168ebc /protocols | |
parent | 17575bcf8d9725ab3d1d6a469087346a16b13fe4 (diff) |
SkypeWeb: thy shall now manipulate with Hidden attribute just for fun
Diffstat (limited to 'protocols')
-rw-r--r-- | protocols/SkypeWeb/src/skype_contacts.cpp | 8 |
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) {
|