prevent crash in getChildren

This commit is contained in:
barisusakli
2014-12-16 14:46:02 -05:00
parent 989ca19df5
commit 26b2ef1543

View File

@@ -288,7 +288,7 @@ var async = require('async'),
// Filter categories to isolate children, and remove disabled categories
async.map(cids, function(cid, next) {
next(null, categories.filter(function(category) {
return parseInt(category.parentCid, 10) === parseInt(cid, 10) && !category.disabled;
return category && parseInt(category.parentCid, 10) === parseInt(cid, 10) && !category.disabled;
}));
}, next);
}