diff options
author | Robert Pösel <robyer@seznam.cz> | 2016-12-11 22:03:39 +0100 |
---|---|---|
committer | Robert Pösel <robyer@seznam.cz> | 2016-12-11 22:03:39 +0100 |
commit | 459a25ab00ba1a75cc8fd41656e98f95c1a45e9d (patch) | |
tree | 767a6234b0a6dc286800584789c1135172950fe9 /protocols/FacebookRM/src/json.h | |
parent | c2c418eafb367c365b8e347e8598b2d859cdea39 (diff) |
Facebook: Option to load all contacts at login (not only friends)
Diffstat (limited to 'protocols/FacebookRM/src/json.h')
-rw-r--r-- | protocols/FacebookRM/src/json.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/FacebookRM/src/json.h b/protocols/FacebookRM/src/json.h index d81ce2caf8..f57672925e 100644 --- a/protocols/FacebookRM/src/json.h +++ b/protocols/FacebookRM/src/json.h @@ -30,7 +30,7 @@ class facebook_json_parser {
public:
FacebookProto* proto;
- int parse_friends(std::string*, std::map< std::string, facebook_user* >*);
+ int parse_friends(std::string*, std::map< std::string, facebook_user* >*, bool);
int parse_notifications(std::string*, std::map< std::string, facebook_notification* >*);
int parse_messages(std::string*, std::vector< facebook_message >*, std::map< std::string, facebook_notification* >*);
int parse_unread_threads(std::string*, std::vector< std::string >*);
|