parallel not needed

v1.18.x
yariplus 10 years ago
parent beb2b38cb7
commit 0c1c42d362

@ -348,8 +348,6 @@ adminController.navigation.get = function(req, res, next) {
}; };
adminController.homepage.get = function(req, res, next) { adminController.homepage.get = function(req, res, next) {
async.parallel({
categoryData: function(next) {
async.waterfall([ async.waterfall([
function(next) { function(next) {
db.getSortedSetRange('cid:0:children', 0, -1, next); db.getSortedSetRange('cid:0:children', 0, -1, next);
@ -370,10 +368,8 @@ adminController.homepage.get = function(req, res, next) {
}); });
}, next); }, next);
} }
], next); ], function(err, categoryData) {
} if (err || !categoryData) categoryData = [];
}, function(err, results) {
if (err || !results || !results.categoryData) results = {categoryData:[]};
plugins.fireHook('filter:homepage.get', {routes: [ plugins.fireHook('filter:homepage.get', {routes: [
{ {
@ -388,7 +384,7 @@ adminController.homepage.get = function(req, res, next) {
route: 'popular', route: 'popular',
name: 'Popular' name: 'Popular'
} }
].concat(results.categoryData)}, function(err, data) { ].concat(categoryData)}, function(err, data) {
data.routes.push({ data.routes.push({
route: '', route: '',
name: 'Custom' name: 'Custom'

Loading…
Cancel
Save