diff options
author | Robert Pösel <robyer@seznam.cz> | 2016-01-02 06:52:58 +0000 |
---|---|---|
committer | Robert Pösel <robyer@seznam.cz> | 2016-01-02 06:52:58 +0000 |
commit | d6cbb026dfce2f834ed61c3e3b578cc594a22b05 (patch) | |
tree | f15bbd2e20c3a28da1b2924e3ea02b1a551d721a /protocols/FacebookRM/src/client.h | |
parent | bc23edb7878995498fa89e37438cdbc77e2b93bf (diff) |
Facebook: Try to use "m." version if "mbasic." fails
This should fix searching and loading friendship requests at login for users which internally gets "mbasic" (not "touch") version when requesting "m" version
git-svn-id: http://svn.miranda-ng.org/main/trunk@15982 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/FacebookRM/src/client.h')
-rw-r--r-- | protocols/FacebookRM/src/client.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/protocols/FacebookRM/src/client.h b/protocols/FacebookRM/src/client.h index 6110943167..240910b49a 100644 --- a/protocols/FacebookRM/src/client.h +++ b/protocols/FacebookRM/src/client.h @@ -45,6 +45,8 @@ public: fcb_conn_lock_ = NULL;
handle_ = NULL;
parent = NULL;
+
+ mbasicWorks = true;
}
HANDLE hMsgCon;
@@ -85,6 +87,8 @@ public: int chat_msgs_recv_;
volatile unsigned int chat_req_;
+ bool mbasicWorks;
+
////////////////////////////////////////////////////////////
// Client vs protocol communication
|