From 1efa7b650551dd395ff2ad3afd8cce24716d2464 Mon Sep 17 00:00:00 2001 From: MythEclipse Date: Fri, 12 Jun 2026 16:49:14 +0700 Subject: [PATCH] feat(ignore): exclude channel 1323365288447574128 from capture Add hardcoded channel ID to shouldCaptureMessageLocation so messages from this channel are not stored, analyzed by AI, or sent to frontend. Co-Authored-By: Claude --- .../src/modules/message-capture/messageCapture.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/services/discord-gateway/src/modules/message-capture/messageCapture.ts b/services/discord-gateway/src/modules/message-capture/messageCapture.ts index 16066ac..21b1dbd 100644 --- a/services/discord-gateway/src/modules/message-capture/messageCapture.ts +++ b/services/discord-gateway/src/modules/message-capture/messageCapture.ts @@ -46,7 +46,8 @@ export function shouldCaptureMessageLocation( if ( message.channelId === "1310988070996414494" || message.channelId === "1265679542144467035" || - message.channelId === "1310867899745046558" + message.channelId === "1310867899745046558" || + message.channelId === "1323365288447574128" ) return false; if (!message.guildId || message.guildId !== target.guildId) return false;