diff options
author | Robert Pösel <robyer@seznam.cz> | 2016-07-16 13:38:08 +0000 |
---|---|---|
committer | Robert Pösel <robyer@seznam.cz> | 2016-07-16 13:38:08 +0000 |
commit | 3a30fdfc6c545ba51cf1587b58b22316f2622e8f (patch) | |
tree | 06daf3b099663cba01f6e2432ca8f2b8f020bbee /protocols/FacebookRM/src/proto.cpp | |
parent | 5dc9ff65b453efdcbe2218720307fae52b5d6e90 (diff) |
Facebook: Improve working with different user types (friend, user, page)
Also simplify arguments of AddToContactList method. And don't show auth items in contact menu for page contacts.
git-svn-id: http://svn.miranda-ng.org/main/trunk@17099 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/FacebookRM/src/proto.cpp')
-rw-r--r-- | protocols/FacebookRM/src/proto.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/FacebookRM/src/proto.cpp b/protocols/FacebookRM/src/proto.cpp index 90e8024f78..109388bd8b 100644 --- a/protocols/FacebookRM/src/proto.cpp +++ b/protocols/FacebookRM/src/proto.cpp @@ -295,7 +295,7 @@ MCONTACT FacebookProto::AddToList(int flags, PROTOSEARCHRESULT* psr) } bool add_temporarily = (flags & PALF_TEMPORARY); - MCONTACT hContact = AddToContactList(&fbu, CONTACT_NONE, false, add_temporarily); + MCONTACT hContact = AddToContactList(&fbu, false, add_temporarily); // Reset NotOnList flag if present and we're adding this contact not temporarily if (hContact && !add_temporarily && db_get_b(hContact, "CList", "NotOnList", 0)) { |