chore: format files for lint
Deploy to VPS / deploy (push) Failing after 8m8s

This commit is contained in:
asepharyana
2026-07-08 01:37:46 +07:00
parent a5cf780a65
commit 9621317a3c
2 changed files with 19 additions and 8 deletions
@@ -60,9 +60,11 @@ const EXCLUDED_THREAD_IDS = new Set(["1522077685508083893"]);
function isExcludedThread(message: {
channel?: { isThread?: () => boolean; id?: string };
}): boolean {
return message.channel?.isThread?.() === true
&& typeof message.channel.id === "string"
&& EXCLUDED_THREAD_IDS.has(message.channel.id);
return (
message.channel?.isThread?.() === true &&
typeof message.channel.id === "string" &&
EXCLUDED_THREAD_IDS.has(message.channel.id)
);
}
function getParentChannelId(