add tests for top topics

fix popular page displaying 18 topics per page
This commit is contained in:
Barış Soner Uşaklı
2018-06-15 15:23:27 -04:00
parent 956aa55253
commit 2fd2accf8c
7 changed files with 22 additions and 16 deletions

View File

@@ -57,7 +57,7 @@ module.exports = function (Categories) {
function (results, next) {
var totalPinnedCount = results.pinnedTids.length;
pinnedTids = results.pinnedTids.slice(data.start, data.stop === -1 ? undefined : data.stop + 1);
pinnedTids = results.pinnedTids.slice(data.start, data.stop !== -1 ? data.stop + 1 : undefined);
var pinnedCount = pinnedTids.length;