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:
@@ -34,7 +34,7 @@ export const configSchema = z
|
|||||||
.describe("Thread IDs to exclude from capture"),
|
.describe("Thread IDs to exclude from capture"),
|
||||||
BOT_EXCLUDED_CHANNEL_IDS: z
|
BOT_EXCLUDED_CHANNEL_IDS: z
|
||||||
.string()
|
.string()
|
||||||
.default("1206269771340058694")
|
.default("1206269771340058694,1318544753821880362")
|
||||||
.transform((v) => v.split(",").filter(Boolean))
|
.transform((v) => v.split(",").filter(Boolean))
|
||||||
.describe(
|
.describe(
|
||||||
"Channel IDs where bot messages are NOT captured/analyzed (bot detection stays on everywhere else)",
|
"Channel IDs where bot messages are NOT captured/analyzed (bot detection stays on everywhere else)",
|
||||||
|
|||||||
Reference in New Issue
Block a user