aboutsummaryrefslogtreecommitdiff
path: root/p/api/greader.php
diff options
context:
space:
mode:
Diffstat (limited to 'p/api/greader.php')
-rw-r--r--p/api/greader.php8
1 files changed, 4 insertions, 4 deletions
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(