summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--api/index.php10
1 files changed, 10 insertions, 0 deletions
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;