From 6d6174ab483e427267072353610ecf5f9c53aa3f Mon Sep 17 00:00:00 2001 From: pinks Date: Fri, 27 Oct 2023 21:50:20 +0200 Subject: [PATCH] silence getUpdates error --- bot/mod.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bot/mod.ts b/bot/mod.ts index b947640..ad3b35b 100644 --- a/bot/mod.ts +++ b/bot/mod.ts @@ -174,6 +174,6 @@ bot.command("crash", () => { }); export async function runBot() { - const runner = run(bot); + const runner = run(bot, { runner: { silent: true } }); await runner.task(); }