Fix auto index follow

pull/2227/head
Chocobozzz 2019-11-04 15:20:34 +01:00
parent f0876a2c35
commit 92ce62331e
No known key found for this signature in database
GPG Key ID: 583A612D890159BE
1 changed files with 3 additions and 1 deletions

View File

@ -36,7 +36,9 @@ export class AutoFollowIndexInstances extends AbstractScheduler {
const uri = indexUrl + INSTANCES_INDEX.HOSTS_PATH
const qs = this.lastCheck ? { since: this.lastCheck.toISOString() } : {}
const qs = { count: 1000 }
if (this.lastCheck) Object.assign(qs, { since: this.lastCheck.toISOString() })
this.lastCheck = new Date()
const { body } = await doRequest({ uri, qs, json: true })