From 27c9899116ff12ca7bae5cac17a1fe33b3f81f4d Mon Sep 17 00:00:00 2001 From: Ali Hammoud Date: Thu, 25 Jun 2026 01:21:36 +0300 Subject: [PATCH] feat: increase rest client timeout duration --- src/index.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/index.ts b/src/index.ts index 0d80700..b4fc139 100644 --- a/src/index.ts +++ b/src/index.ts @@ -3,6 +3,9 @@ import { loadEvents } from './common/events/load-events.js'; import { config } from './env.js'; const client = new Client({ + rest: { + timeout: 60_000, + }, intents: [ GatewayIntentBits.Guilds, GatewayIntentBits.GuildModeration,