feat(moderation): add additional channel to skip in message capture logic

This commit is contained in:
MythEclipse
2026-05-31 19:04:03 +07:00
parent f386e6deba
commit c30785a978
2 changed files with 9 additions and 1 deletions
@@ -39,5 +39,12 @@ describe("shouldCaptureMessageLocation", () => {
{ guildId: "guild-1" },
),
).toBe(false);
expect(
shouldCaptureMessageLocation(
{ guildId: "guild-1", channelId: "1310867899745046558" },
{ guildId: "guild-1" },
),
).toBe(false);
});
});