fixed sorting
This commit is contained in:
parent
628c54d569
commit
91115ca22e
1 changed files with 1 additions and 1 deletions
2
index.js
2
index.js
|
@ -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 {
|
||||
|
|
Loading…
Add table
Reference in a new issue