diff options
| author | 2019-11-02 00:46:58 +0100 | |
|---|---|---|
| committer | 2019-11-02 00:46:58 +0100 | |
| commit | 6a317d876c1da6243f212c9c2967cd44179762d1 (patch) | |
| tree | d8a69f64251e09ef730ea5e20cb11b2a70b004c3 /p/api/greader.php | |
| parent | 0cc2c4628c4c6f16dd78acdb417982d3325485d3 (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.php | 2 |
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 ); } |
