From 7632fc0137f2eda2cddb02c07a7ad3f987a38e58 Mon Sep 17 00:00:00 2001 From: George Hazan Date: Wed, 29 Apr 2015 18:22:03 +0000 Subject: fix for 64 bit integers git-svn-id: http://svn.miranda-ng.org/main/trunk@13250 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- protocols/Twitter/src/twitter.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'protocols/Twitter/src/twitter.cpp') diff --git a/protocols/Twitter/src/twitter.cpp b/protocols/Twitter/src/twitter.cpp index 06ac5f8792..4a321675e0 100644 --- a/protocols/Twitter/src/twitter.cpp +++ b/protocols/Twitter/src/twitter.cpp @@ -92,7 +92,7 @@ std::vector twitter::get_friends() JSONNODE *pStatus = json_get(pNode, "status"); if (pStatus != NULL) { user.status.text = json_as_pstring(json_get(pStatus, "text")); - user.status.id = json_as_int(json_get(pStatus, "id")); + user.status.id = str2int(json_as_pstring(json_get(pStatus, "id"))); std::string timestr = json_as_pstring(json_get(pStatus, "created_at")); user.status.time = parse_time(timestr); @@ -172,7 +172,7 @@ twitter_user twitter::add_friend(const std::string &name) JSONNODE *pStatus = json_get(root, "status"); if (pStatus != NULL) { ret.status.text = json_as_pstring(json_get(pStatus, "text")); - ret.status.id = json_as_int(json_get(pStatus, "id")); + ret.status.id = str2int(json_as_pstring(json_get(pStatus, "id"))); } return ret; @@ -263,7 +263,7 @@ std::vector twitter::get_statuses(int count, twitter_id id) u.status.text = rawText; } - u.status.id = json_as_int(json_get(pNode, "id")); + u.status.id = str2int(json_as_pstring(json_get(pNode, "id"))); std::string timestr = json_as_pstring(json_get(pNode, "created_at")); u.status.time = parse_time(timestr); @@ -300,7 +300,7 @@ std::vector twitter::get_direct(twitter_id id) u.username = json_as_pstring(json_get(pNode, "sender_screen_name")); u.status.text = json_as_pstring(json_get(pNode, "text")); - u.status.id = json_as_int(json_get(pNode, "id")); + u.status.id = str2int(json_as_pstring(json_get(pNode, "id"))); std::string timestr = json_as_pstring(json_get(pNode, "created_at")); u.status.time = parse_time(timestr); messages.push_back(u); -- cgit v1.2.3