code style
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/pr Build is passing

This commit is contained in:
Artem Anufrij 2023-09-27 21:44:58 +02:00
parent cd0b9a7f55
commit 94a6893444

View File

@ -318,8 +318,8 @@ exports.randomCovers = function (count, size, callback) {
.find({ "covers.cover64": { $exists: true } })
.project({ "covers.cover64": true })
.toArray((err, result) => {
let res = [];
if (result.length > count) {
let res = [];
while (count-- > 0) {
let rnd = randomNumber(0, result.length);
res.push(result[rnd]);