From b601369bfda2ef5a9d8c7dcfc7eea9dfb12e2f9f Mon Sep 17 00:00:00 2001 From: tastytea Date: Sun, 27 Jan 2019 04:15:52 +0100 Subject: [PATCH] Forgot an int->string conversion. --- src/easy/entities/notification.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/easy/entities/notification.cpp b/src/easy/entities/notification.cpp index e845dcb..6a929db 100644 --- a/src/easy/entities/notification.cpp +++ b/src/easy/entities/notification.cpp @@ -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