From 75b901d9293d6481886e5b4352d49ea0bcdd170d Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Tue, 29 Nov 2011 09:22:38 +0400 Subject: api/getCategories: return virtual categories and Uncategorized --- api/index.php | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'api') diff --git a/api/index.php b/api/index.php index 0453dcb36..1c4c52fd9 100644 --- a/api/index.php +++ b/api/index.php @@ -191,6 +191,16 @@ } } + foreach (array(-2,-1,0) as $cat_id) { + $unread = getFeedUnread($link, $cat_id, true); + + if ($unread || !$unread_only) { + array_push($cats, array("id" => $cat_id, + "title" => getCategoryTitle($link, $cat_id), + "unread" => $unread)); + } + } + print api_wrap_reply(API_STATUS_OK, $seq, $cats); break; -- cgit v1.2.3