api: fix getFeeds returning some ids in string format

This commit is contained in:
Andrew Dolgov 2014-01-24 15:33:16 +04:00
parent 5b319e8be2
commit 1d3cbe31c3
1 changed files with 2 additions and 2 deletions

View File

@ -516,7 +516,7 @@ class API extends Handler {
if ($unread || !$unread_only) {
$row = array(
"id" => $cv["id"],
"id" => (int) $cv["id"],
"title" => $cv["description"],
"unread" => $cv["counter"],
"cat_id" => -2,
@ -562,7 +562,7 @@ class API extends Handler {
if ($unread || !$unread_only) {
$row = array(
"id" => $line["id"],
"id" => (int) $line["id"],
"title" => $line["title"],
"unread" => $unread,
"is_cat" => true,