Selaa lähdekoodia

API 64-bit ID as string (#2621)

Fix https://github.com/FreshRSS/FreshRSS/issues/2620
Alexandre Alapetite 6 vuotta sitten
vanhempi
commit
6a317d876c
1 muutettua tiedostoa jossa 1 lisäystä ja 1 poistoa
  1. 1 1
      p/api/greader.php

+ 1 - 1
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
 		);
 	}