no need for return

This commit is contained in:
barisusakli
2014-11-04 23:30:11 -05:00
parent 44175188c4
commit 70657251b9

View File

@@ -141,8 +141,7 @@ helpers.hasEnoughReputationFor = function(privilege, uid, callback) {
}
}
// Does not satisfy any of those thresholds?
return callback(null, false);
callback(null, false);
} else {
callback(null, reputation >= parseInt(meta.config[privilege], 10));
}