forgot to use the passed in fn

v1.18.x
psychobunny 11 years ago
parent 2acdcd9ba2
commit f5716de06e

@ -82,7 +82,7 @@ module.exports = function(db, module) {
var results = []; var results = [];
async.each(keys, function(key, next) { async.each(keys, function(key, next) {
module.isSetMember(key, value, function(err, result) { module[fn](key, value, function(err, result) {
results.push(result); results.push(result);
next(); next();
}); });

Loading…
Cancel
Save