diff options
author | Robert Pösel <robyer@seznam.cz> | 2015-04-27 22:05:18 +0000 |
---|---|---|
committer | Robert Pösel <robyer@seznam.cz> | 2015-04-27 22:05:18 +0000 |
commit | bd5a6cebc05210166ce877e89e8597abdb1a4a48 (patch) | |
tree | 5547152b60c571e439de5679b88247ac0a23821f /protocols/FacebookRM/src/client.h | |
parent | db80b3eb8fa3de32297932d8a7d440f29654388c (diff) |
Facebook: Use msgs_recv parameter in channel requests
I'm not sure whether this fixes the "computer needs cleaning" error, but we will see
git-svn-id: http://svn.miranda-ng.org/main/trunk@13213 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/FacebookRM/src/client.h')
-rw-r--r-- | protocols/FacebookRM/src/client.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/protocols/FacebookRM/src/client.h b/protocols/FacebookRM/src/client.h index 652a5b3dfa..06b63c861d 100644 --- a/protocols/FacebookRM/src/client.h +++ b/protocols/FacebookRM/src/client.h @@ -37,7 +37,7 @@ public: facebook_client()
{
- msgid_ = error_count_ = last_feeds_update_ = last_notification_time_ = random_ = 0;
+ msgid_ = error_count_ = last_feeds_update_ = last_notification_time_ = random_ = chat_msgs_recv_ = 0;
is_typing_ = false;
@@ -85,6 +85,7 @@ public: time_t last_feeds_update_;
time_t last_notification_time_;
int msgid_;
+ int chat_msgs_recv_;
////////////////////////////////////////////////////////////
|