diff options
Diffstat (limited to 'src/tasks/updateCache.ts')
-rw-r--r-- | src/tasks/updateCache.ts | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/src/tasks/updateCache.ts b/src/tasks/updateCache.ts index 5994af9..6c1f098 100644 --- a/src/tasks/updateCache.ts +++ b/src/tasks/updateCache.ts @@ -10,19 +10,18 @@ export default class UpdateCacheTask extends BushTask { } async exec(): Promise<void> { const environment = this.client.config.dev ? 'development' : 'production'; - let row = await Global.findByPk(environment); - if (!row) { - row = await Global.create({ + const row = + (await Global.findByPk(environment)) || + (await Global.create({ environment, superUsers: [], blacklistedChannels: [], blacklistedGuilds: [], blacklistedUsers: [], disabledCommands: [] - }); - } + })); - for (let option in row) { + for (const option in row) { if (this.client.cache[option]) this.client.cache[option] = row[option]; } this.client.logger.verbose(`UpdateCache`, `Updated cache.`); |