fixed sorting

master
cheetah 5 years ago
parent 628c54d569
commit 91115ca22e

@ -10,7 +10,7 @@ app.use('/', serveStatic(require('path').join(__dirname, 'app_html')))
const { mongoose, Models } = require('./database') const { mongoose, Models } = require('./database')
const processOneAccount = async () => { 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] theAccount = theAccount[0]
console.log(theAccount) console.log(theAccount)
try { try {

Loading…
Cancel
Save