aboutsummaryrefslogtreecommitdiff
path: root/p/api/greader.php
diff options
context:
space:
mode:
authorGravatar Alexandre Alapetite <alexandre@alapetite.fr> 2019-11-02 00:46:58 +0100
committerGravatar GitHub <noreply@github.com> 2019-11-02 00:46:58 +0100
commit6a317d876c1da6243f212c9c2967cd44179762d1 (patch)
treed8a69f64251e09ef730ea5e20cb11b2a70b004c3 /p/api/greader.php
parent0cc2c4628c4c6f16dd78acdb417982d3325485d3 (diff)
API 64-bit ID as string (#2621)
Fix https://github.com/FreshRSS/FreshRSS/issues/2620
Diffstat (limited to 'p/api/greader.php')
-rw-r--r--p/api/greader.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/p/api/greader.php b/p/api/greader.php
index 66888b0ef..9c28125e7 100644
--- a/p/api/greader.php
+++ b/p/api/greader.php
@@ -696,7 +696,7 @@ function streamContentsItemsIds($streamId, $start_time, $stop_time, $count, $ord
$itemRefs = array();
foreach ($ids as $id) {
$itemRefs[] = array(
- 'id' => $id, //64-bit decimal
+ 'id' => '' . $id, //64-bit decimal
);
}