From 8586f966f558d317d79b3ec25d0bf21d3d92498d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20P=C3=B6sel?= Date: Tue, 19 Nov 2013 16:58:01 +0000 Subject: Facebook: Correctly load contacts on mobile phone that are online right now (also removed old related option) git-svn-id: http://svn.miranda-ng.org/main/trunk@6936 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- protocols/FacebookRM/src/contacts.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'protocols/FacebookRM/src/contacts.cpp') diff --git a/protocols/FacebookRM/src/contacts.cpp b/protocols/FacebookRM/src/contacts.cpp index 432c00187f..adef0e21b0 100644 --- a/protocols/FacebookRM/src/contacts.cpp +++ b/protocols/FacebookRM/src/contacts.cpp @@ -115,7 +115,7 @@ HANDLE FacebookProto::AddToContactList(facebook_user* fbu, ContactType type, boo std::string homepage = FACEBOOK_URL_PROFILE + fbu->user_id; setString(hContact, "Homepage", homepage.c_str()); - setString(hContact, "MirVer", fbu->status_id == ID_STATUS_ONTHEPHONE ? FACEBOOK_MOBILE : FACEBOOK_NAME); + setTString(hContact, "MirVer", fbu->mobile ? _T(FACEBOOK_CLIENT_MOBILE) : _T(FACEBOOK_CLIENT)); db_unset(hContact, "CList", "MyHandle"); @@ -155,8 +155,8 @@ void FacebookProto::SetAllContactStatuses(int status, bool reset_client) if (reset_client) { ptrT mirver( getTStringA(hContact, "MirVer")); - if (!mirver || _tcscmp(mirver, _T(FACEBOOK_NAME))) - setTString(hContact, "MirVer", _T(FACEBOOK_NAME)); + if (!mirver || _tcscmp(mirver, _T(FACEBOOK_CLIENT))) + setTString(hContact, "MirVer", _T(FACEBOOK_CLIENT)); } if (getWord(hContact, "Status", 0) != status) -- cgit v1.2.3