Forgot an int->string conversion.

This commit is contained in:
tastytea 2019-01-27 04:15:52 +01:00
parent 5a6b541de2
commit b601369bfd
Signed by: tastytea
GPG Key ID: CFC39497F1B26E07
1 changed files with 1 additions and 1 deletions

View File

@ -60,7 +60,7 @@ const system_clock::time_point Notification::created_at() const
const string Notification::id() const
{
return stouint64(get_string("id"));
return get_string("id");
}
const Easy::Status Notification::status() const