fixed sorting

This commit is contained in:
cheetah 2020-03-31 12:19:12 +02:00
parent 628c54d569
commit 91115ca22e

View file

@ -10,7 +10,7 @@ app.use('/', serveStatic(require('path').join(__dirname, 'app_html')))
const { mongoose, Models } = require('./database')
const processOneAccount = async () => {
let theAccount = await Models.MCAccount.find({ validState: { $gte: 0 } }).sort({ validState: 1, lastUpdate: -1 }).limit(1)
let theAccount = await Models.MCAccount.find({ validState: { $gte: 0 } }).sort({ validState: 1, lastUpdate: 1 }).limit(1)
theAccount = theAccount[0]
console.log(theAccount)
try {