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 <noreply@anthropic.com>
This commit is contained in:
MythEclipse
2026-06-12 16:49:14 +07:00
co-authored by Claude
parent 906aef1807
commit 1efa7b6505
@@ -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;