mirror of
https://github.com/NodeBB/NodeBB.git
synced 2025-11-17 11:11:04 +01:00
Merge remote-tracking branch 'origin/master' into mongodb-3.0-driver-2.0
This commit is contained in:
@@ -204,14 +204,17 @@ module.exports = function(db, module) {
|
||||
if (!key) {
|
||||
return callback();
|
||||
}
|
||||
var scoreQuery = {};
|
||||
|
||||
var query = {_key: key};
|
||||
if (min !== '-inf') {
|
||||
scoreQuery.$gte = min;
|
||||
query.score = {$gte: min};
|
||||
}
|
||||
if (max !== '+inf') {
|
||||
scoreQuery.$lte = max;
|
||||
query.score = query.score || {};
|
||||
query.score.$lte = max;
|
||||
}
|
||||
db.collection('objects').count({_key: key, score: scoreQuery}, function(err, count) {
|
||||
|
||||
db.collection('objects').count(query, function(err, count) {
|
||||
callback(err, count ? count : 0);
|
||||
});
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user