filter dupes

v1.18.x
barisusakli 9 years ago
parent 3664c94581
commit c28494724f

@ -169,8 +169,8 @@ module.exports = function(Topics) {
return callback(); return callback();
} }
tids = tids.filter(function(tid) { tids = tids.filter(function(tid, index, array) {
return tid && utils.isNumber(tid); return tid && utils.isNumber(tid) && array.indexOf(tid) === index;
}); });
if (!tids.length) { if (!tids.length) {

Loading…
Cancel
Save