diff options
author | mat <github@matdoes.dev> | 2022-05-17 18:26:14 +0000 |
---|---|---|
committer | mat <github@matdoes.dev> | 2022-05-17 18:26:14 +0000 |
commit | 8e0c3cb608041c8f3d28d1bcaf6f0d4e159e688f (patch) | |
tree | e131411bbfe8e6b90ab411dd1549cb6ce7f912e1 /src/database.ts | |
parent | 767c17c494b2302ac10f0657ad280832350413db (diff) | |
download | skyblock-api-8e0c3cb608041c8f3d28d1bcaf6f0d4e159e688f.tar.gz skyblock-api-8e0c3cb608041c8f3d28d1bcaf6f0d4e159e688f.tar.bz2 skyblock-api-8e0c3cb608041c8f3d28d1bcaf6f0d4e159e688f.zip |
fix auctionitems returning an empty object sometimes
Diffstat (limited to 'src/database.ts')
-rw-r--r-- | src/database.ts | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/database.ts b/src/database.ts index a8dd1a4..2b73c77 100644 --- a/src/database.ts +++ b/src/database.ts @@ -1113,7 +1113,8 @@ export async function updateItemAuction(auction: ItemAuctionsSchema) { /** * Fetches the SkyBlock ids of all the items in the auctions database. This method is slow and should be cached! */ -export async function fetchItemsAuctionsIds(): Promise<string[]> { +export async function fetchItemsAuctionsIds(): Promise<string[] | undefined> { + if (!itemAuctionsCollection) return undefined const docs = await itemAuctionsCollection?.aggregate([ // this removes everything except the _id { $project: { _id: true } } |