fix teasers

v1.18.x
barisusakli 11 years ago
parent 8abf2835a5
commit e1c3bc9713

@ -394,14 +394,16 @@ var async = require('async'),
users[user.uid] = user; users[user.uid] = user;
}); });
var tidToPost = {}; var tidToPost = {};
postData.forEach(function(post, index) { postData.forEach(function(post) {
post.user = users[post.uid]; post.user = users[post.uid];
post.index = results.counts[index] + 1;
post.timestamp = utils.toISOString(post.timestamp); post.timestamp = utils.toISOString(post.timestamp);
tidToPost[post.tid] = post; tidToPost[post.tid] = post;
}); });
var teasers = tids.map(function(tid) { var teasers = tids.map(function(tid, index) {
if (tidToPost[tid]) {
tidToPost[tid].index = results.counts[index] + 1;
}
return tidToPost[tid]; return tidToPost[tid];
}); });

Loading…
Cancel
Save