ensuring that the filter:category.get hook always sends data in the same format

v1.18.x
Julian Lam 10 years ago
parent 7e35987e1b
commit 6ea10aa7e3

@ -27,7 +27,7 @@ categoriesController.recent = function(req, res, next) {
data['feeds:disableRSS'] = parseInt(meta.config['feeds:disableRSS'], 10) === 1;
plugins.fireHook('filter:category.get', {category: data, uid: uid}, function(err, data) {
plugins.fireHook('filter:category.get', {category: {topics: data}, uid: uid}, function(err, data) {
if (err) {
return next(err);
}
@ -78,7 +78,7 @@ categoriesController.unread = function(req, res, next) {
return next(err);
}
plugins.fireHook('filter:category.get', {category: data, uid: uid}, function(err, data) {
plugins.fireHook('filter:category.get', {category: {topics: data}, uid: uid}, function(err, data) {
if (err) {
return next(err);
}

Loading…
Cancel
Save