filter dupes

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

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

Loading…
Cancel
Save