Child categories no longer show up on homepage, re: #2080

This commit is contained in:
Julian Lam
2014-09-15 10:50:58 -04:00
parent 6e21b7a830
commit 84d4035597

View File

@@ -69,6 +69,11 @@ Controllers.home = function(req, res, next) {
return next(err);
}
// Remove child categories, as they don't belong on the home page
categoryData = categoryData.filter(function(categoryObj) {
return !categoryObj.parent;
});
categories.getRecentTopicReplies(categoryData, uid, function(err) {
next(err, categoryData);
});