mirror of
https://github.com/NodeBB/NodeBB.git
synced 2025-11-06 22:15:48 +01:00
fixed recent and unread
This commit is contained in:
@@ -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: {topics: data}, uid: uid}, function(err, data) {
|
||||
plugins.fireHook('filter:category.get', {category: 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: {topics: data}, uid: uid}, function(err, data) {
|
||||
plugins.fireHook('filter:category.get', {category: data, uid: uid}, function(err, data) {
|
||||
if (err) {
|
||||
return next(err);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user