mirror of
https://github.com/NodeBB/NodeBB.git
synced 2026-07-05 10:09:38 +02:00
closes #2379
also fixed a bug where tags with 0 topics were showing up in /tags
This commit is contained in:
@@ -49,7 +49,7 @@ tagsController.getTag = function(req, res, next) {
|
||||
};
|
||||
|
||||
tagsController.getTags = function(req, res, next) {
|
||||
topics.getTags(0, 99, function(err, tags) {
|
||||
topics.getTags(0, 100, function(err, tags) {
|
||||
if (err) {
|
||||
return next(err);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user