diff options
author | zemiacsik <zemi@centrum.sk> | 2018-01-12 18:26:01 +0100 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2018-01-12 20:26:01 +0300 |
commit | 03d22907643a74684e690b8bc73580c1fcd591fd (patch) | |
tree | 047d4ab6b76e9670314b5b53b490081ce59e1150 /protocols/FacebookRM/src/client.h | |
parent | 191f7f57e767f16dbd23a0baafae935d9be6662a (diff) |
Facebook: initial changes to support loading of unread chat messages (#1095)
* Facebook: initial changes to support loading of unread chat messages
* Facebook: load unread messages in one request + load last messages when chat opens (if is set)
* shrinked regex pattern, commented unused code
* Facebook: fixed loading of whole history
Diffstat (limited to 'protocols/FacebookRM/src/client.h')
-rw-r--r-- | protocols/FacebookRM/src/client.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/FacebookRM/src/client.h b/protocols/FacebookRM/src/client.h index bcc161d3fc..a71fab6aff 100644 --- a/protocols/FacebookRM/src/client.h +++ b/protocols/FacebookRM/src/client.h @@ -223,7 +223,7 @@ public: HttpRequest* memoriesRequest();
// history.cpp
- HttpRequest* threadInfoRequest(bool isChat, const char *id, const char* timestamp = nullptr, int limit = -1);
+ HttpRequest* threadInfoRequest(bool isChat, const char *id, const char* timestamp = nullptr, int limit = -1, bool loadMessages = false);
HttpRequest* threadInfoRequest(const LIST<char> &ids, int offset, int limit);
HttpRequest* unreadThreadsRequest();
|