Merge branch 'master' of e1e0/tt-rss into master

This commit is contained in:
fox 2020-08-01 15:44:04 +00:00 committed by Gogs
commit 2b50aaed61
1 changed files with 2 additions and 2 deletions

View File

@ -174,9 +174,9 @@ class API extends Handler {
$unread = getFeedUnread($cat_id, true); $unread = getFeedUnread($cat_id, true);
if ($unread || !$unread_only) { if ($unread || !$unread_only) {
array_push($cats, array("id" => $cat_id, array_push($cats, array("id" => (int) $cat_id,
"title" => Feeds::getCategoryTitle($cat_id), "title" => Feeds::getCategoryTitle($cat_id),
"unread" => $unread)); "unread" => (int) $unread));
} }
} }
} }