diff --git a/src/services/configWatcherService.ts b/src/services/configWatcherService.ts index 072b6b61..8df1acd9 100644 --- a/src/services/configWatcherService.ts +++ b/src/services/configWatcherService.ts @@ -76,6 +76,6 @@ export const saveConfig = async (): Promise => { export const syncConfigWithDatabase = (): void => { // Event messages are deleted after endDate. Since we don't use beginDate/endDate and instead have config toggles, we need to delete the messages once those bools are false. if (!config.worldState?.galleonOfGhouls) { - void Inbox.deleteMany({ goalTag: "GalleonRobbery" }); + void Inbox.deleteMany({ goalTag: "GalleonRobbery" }).then(() => {}); // For some reason, I can't just do `Inbox.deleteMany(...)`; it needs this whole circus. } };