This commit is contained in:
barisusakli
2014-11-14 11:32:56 -05:00
parent 61863a69fe
commit 05a4737e84
2 changed files with 2 additions and 1 deletions

View File

@@ -142,7 +142,7 @@ categoriesController.get = function(req, res, next) {
var topicIndex = utils.isNumber(req.params.topic_index) ? parseInt(req.params.topic_index, 10) - 1 : 0;
var topicCount = parseInt(results.categoryData.topic_count, 10);
if (topicIndex < 0 || topicIndex > topicCount - 1) {
if (topicIndex < 0 || topicIndex > Math.max(topicCount - 1, 0)) {
var url = '/category/' + cid + '/' + req.params.slug + (topicIndex > topicCount ? '/' + topicCount : '');
return res.locals.isAPI ? res.status(302).json(url) : res.redirect(url);
}