mirror of
https://github.com/NodeBB/NodeBB.git
synced 2026-05-06 20:47:17 +02:00
no need for a call to count replies
This commit is contained in:
@@ -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);
|
||||
});
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user