no need for a call to count replies

This commit is contained in:
psychobunny
2017-02-08 16:39:44 -05:00
parent 83cd960ffa
commit 575a3c7b9d

View File

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