From 36363fa3db108ed35a0824541037b8a1798540db Mon Sep 17 00:00:00 2001 From: asepharyana Date: Tue, 18 Aug 2026 16:13:25 +0700 Subject: [PATCH] fix(gateway): skip bot-only channel 1318544753821880362 from capture Add to BOT_EXCLUDED_CHANNEL_IDS default alongside 1206269771340058694 so bot messages in that channel are no longer captured/analyzed/embedded. --- services/discord-gateway/src/shared/config/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/services/discord-gateway/src/shared/config/index.ts b/services/discord-gateway/src/shared/config/index.ts index a32c557..619311e 100644 --- a/services/discord-gateway/src/shared/config/index.ts +++ b/services/discord-gateway/src/shared/config/index.ts @@ -34,7 +34,7 @@ export const configSchema = z .describe("Thread IDs to exclude from capture"), BOT_EXCLUDED_CHANNEL_IDS: z .string() - .default("1206269771340058694") + .default("1206269771340058694,1318544753821880362") .transform((v) => v.split(",").filter(Boolean)) .describe( "Channel IDs where bot messages are NOT captured/analyzed (bot detection stays on everywhere else)",