api, also hide uncategorized if empty

This commit is contained in:
Andrew Dolgov 2013-04-01 14:08:17 +04:00
parent c0a08063d6
commit dc5a8a21a8
1 changed files with 7 additions and 1 deletions

View File

@ -727,7 +727,7 @@ class API extends Handler {
}
// only works for labels for the time being
// only works for labels or uncategorized for the time being
private function isCategoryEmpty($id) {
if ($id == -2) {
@ -736,6 +736,12 @@ class API extends Handler {
return db_fetch_result($result, 0, "count") == 0;
} else if ($id == 0) {
$result = db_query($this->link, "SELECT COUNT(*) AS count FROM ttrss_feeds
WHERE cat_id IS NULL AND owner_uid = " . $_SESSION["uid"]);
return db_fetch_result($result, 0, "count") == 0;
}
return false;