no need for a call to count replies

v1.18.x
psychobunny 8 years ago
parent 83cd960ffa
commit 575a3c7b9d

@ -413,9 +413,6 @@ module.exports = function (Topics) {
posts.getPostField(replyPids[0], 'timestamp', function (err, timestamp) {
next(err, utils.toISOString(timestamp));
});
},
"count": function (next) {
db.sortedSetCard('pid:' + pid + ':replies', next);
}
}, function (err, replies) {
if (replies.users.length > 5) {
@ -423,6 +420,8 @@ module.exports = function (Topics) {
replies.hasMore = true;
}
replies.count = replyPids.length;
next(err, replies);
});
});

Loading…
Cancel
Save