fixed Easy::Status::id()

This commit is contained in:
tastytea 2018-04-01 00:14:55 +02:00
parent 3d2c636d54
commit 233646668e
Signed by: tastytea
GPG Key ID: 59346E0EA35C67E5
1 changed files with 1 additions and 1 deletions

View File

@ -92,7 +92,7 @@ const uint_fast64_t Status::favourites_count() const
const uint_fast64_t Status::id() const
{
return get_uint64("id");
return std::stoull(get_string("id"));
}
const uint_fast64_t Status::in_reply_to_id() const