also fixed a bug where tags with 0 topics were showing up in /tags
This commit is contained in:
barisusakli
2014-11-13 14:29:44 -05:00
parent 45affa3043
commit 68e8039ac7
5 changed files with 81 additions and 7 deletions

View File

@@ -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);
}