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.
This commit is contained in:
asepharyana
2026-08-18 16:13:25 +07:00
parent d133cc3271
commit 36363fa3db
@@ -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)",