diff options
author | jgeboski <jgeboski@gmail.com> | 2015-12-26 18:15:55 -0500 |
---|---|---|
committer | jgeboski <jgeboski@gmail.com> | 2015-12-26 18:15:55 -0500 |
commit | 2df83c12a660762d6793989aa781058dba0c55ac (patch) | |
tree | fe66c713812502dbcf3807c06db339ea5868619c /facebook/facebook-api.h | |
parent | 195f89e09927df6bd9193711ecdd891855054572 (diff) | |
download | bitlbee-facebook-2df83c12a660762d6793989aa781058dba0c55ac.tar.gz bitlbee-facebook-2df83c12a660762d6793989aa781058dba0c55ac.tar.bz2 bitlbee-facebook-2df83c12a660762d6793989aa781058dba0c55ac.tar.xz |
Preserve the timestamp on incoming messages
Diffstat (limited to 'facebook/facebook-api.h')
-rw-r--r-- | facebook/facebook-api.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/facebook/facebook-api.h b/facebook/facebook-api.h index 280ec60..15e4cb2 100644 --- a/facebook/facebook-api.h +++ b/facebook/facebook-api.h @@ -326,6 +326,7 @@ struct _FbApiEvent * @flags: The #FbApiMessageFlags. * @uid: The user #FbId. * @tid: The thread #FbId. + * @tstamp: The timestamp in milliseconds (UTC). * @text: The message text. * * Represents a Facebook user message. @@ -335,6 +336,7 @@ struct _FbApiMessage FbApiMessageFlags flags; FbId uid; FbId tid; + gint64 tstamp; gchar *text; }; |