summaryrefslogtreecommitdiff
path: root/protocols/FacebookRM/src/entities.h
diff options
context:
space:
mode:
authorRobert Pösel <robyer@seznam.cz>2013-04-27 08:56:44 +0000
committerRobert Pösel <robyer@seznam.cz>2013-04-27 08:56:44 +0000
commite4b1413ff3fb8c169e2725c3e7686f47eaf93ec8 (patch)
tree5a7e4cf96f86b078930cbbb289d92b434565f86d /protocols/FacebookRM/src/entities.h
parentaf64eab612166b29df416b3f498a5ec1b7c08870 (diff)
Facebook: Fixed getting offline messages.
Loading some timestamp value of contacts (dword "LastActiveTS") for... I don't know. Version bump. git-svn-id: http://svn.miranda-ng.org/main/trunk@4548 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/FacebookRM/src/entities.h')
-rw-r--r--protocols/FacebookRM/src/entities.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/protocols/FacebookRM/src/entities.h b/protocols/FacebookRM/src/entities.h
index 0f9058c42d..a5e85d23a6 100644
--- a/protocols/FacebookRM/src/entities.h
+++ b/protocols/FacebookRM/src/entities.h
@@ -31,6 +31,7 @@ struct facebook_user
unsigned int status_id;
unsigned int gender;
+ unsigned int last_active;
std::string image_url;
@@ -41,7 +42,7 @@ struct facebook_user
this->handle = NULL;
this->user_id = this->real_name = this->image_url = "";
this->status_id = ID_STATUS_OFFLINE;
- this->gender = 0;
+ this->gender = this->last_active = 0;
this->deleted = false;
}
@@ -53,6 +54,7 @@ struct facebook_user
this->status_id = fu->status_id;
this->user_id = fu->user_id;
this->gender = fu->gender;
+ this->last_active = fu->last_active;
this->deleted = fu->deleted;
}
};