mirror of
https://github.com/NodeBB/NodeBB.git
synced 2025-11-17 19:21:04 +01:00
missing semi-colons in database/
This commit is contained in:
@@ -201,7 +201,7 @@ module.exports = function(db, module) {
|
|||||||
});
|
});
|
||||||
callback(null, counts);
|
callback(null, counts);
|
||||||
});
|
});
|
||||||
}
|
};
|
||||||
|
|
||||||
module.setRemoveRandom = function(key, callback) {
|
module.setRemoveRandom = function(key, callback) {
|
||||||
callback = callback || function() {};
|
callback = callback || function() {};
|
||||||
|
|||||||
@@ -34,6 +34,6 @@ helpers.resultsToBool = function(results) {
|
|||||||
results[i] = results[i] === 1;
|
results[i] = results[i] === 1;
|
||||||
}
|
}
|
||||||
return results;
|
return results;
|
||||||
}
|
};
|
||||||
|
|
||||||
module.exports = helpers;
|
module.exports = helpers;
|
||||||
Reference in New Issue
Block a user