silence getUpdates error

This commit is contained in:
pinks 2023-10-27 21:50:20 +02:00
parent a3bada0da2
commit 6d6174ab48
1 changed files with 1 additions and 1 deletions

View File

@ -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();
}