From f0db70dcb03cef0c53db0ee0b678a64b79c941df Mon Sep 17 00:00:00 2001 From: Alexandre Alapetite Date: Thu, 30 Apr 2020 23:17:46 +0200 Subject: API Use string type for Usec (#2935) #Fix https://github.com/FreshRSS/FreshRSS/issues/2934 --- p/api/greader.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'p/api/greader.php') diff --git a/p/api/greader.php b/p/api/greader.php index d538ec429..877b91cc7 100644 --- a/p/api/greader.php +++ b/p/api/greader.php @@ -421,7 +421,7 @@ function unreadCount() { //http://blog.martindoms.com/2009/10/16/using-the-googl $unreadcounts[] = array( 'id' => 'feed/' . $feed->id(), 'count' => $feed->nbNotRead(), - 'newestItemTimestampUsec' => $lastUpdate, + 'newestItemTimestampUsec' => '' . $lastUpdate, ); if ($catLastUpdate < $lastUpdate) { $catLastUpdate = $lastUpdate; @@ -430,7 +430,7 @@ function unreadCount() { //http://blog.martindoms.com/2009/10/16/using-the-googl $unreadcounts[] = array( 'id' => 'user/-/label/' . htmlspecialchars_decode($cat->name(), ENT_QUOTES), 'count' => $cat->nbNotRead(), - 'newestItemTimestampUsec' => $catLastUpdate, + 'newestItemTimestampUsec' => '' . $catLastUpdate, ); $totalUnreads += $cat->nbNotRead(); if ($totalLastUpdate < $catLastUpdate) { @@ -445,14 +445,14 @@ function unreadCount() { //http://blog.martindoms.com/2009/10/16/using-the-googl $unreadcounts[] = array( 'id' => 'user/-/label/' . htmlspecialchars_decode($label->name(), ENT_QUOTES), 'count' => $label->nbUnread(), - 'newestItemTimestampUsec' => $lastUpdate, + 'newestItemTimestampUsec' => '' . $lastUpdate, ); } $unreadcounts[] = array( 'id' => 'user/-/state/com.google/reading-list', 'count' => $totalUnreads, - 'newestItemTimestampUsec' => $totalLastUpdate, + 'newestItemTimestampUsec' => '' . $totalLastUpdate, ); echo json_encode(array( -- cgit v1.2.3