diff options
Diffstat (limited to 'protocols/FacebookRM/src/entities.h')
-rw-r--r-- | protocols/FacebookRM/src/entities.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/protocols/FacebookRM/src/entities.h b/protocols/FacebookRM/src/entities.h index 88be2bd21e..8cd50f590b 100644 --- a/protocols/FacebookRM/src/entities.h +++ b/protocols/FacebookRM/src/entities.h @@ -40,6 +40,8 @@ struct facebook_user bool deleted; bool idle; + bool updated; + ClientType client; facebook_user() @@ -47,7 +49,7 @@ struct facebook_user this->handle = NULL; this->status_id = ID_STATUS_OFFLINE; this->gender = this->last_active = 0; - this->deleted = this->idle = false; + this->deleted = this->idle = this->updated = false; this->client = CLIENT_WEB; } |