diff --git a/backend/src/plugins/Automod/triggers/matchAttachmentType.ts b/backend/src/plugins/Automod/triggers/matchAttachmentType.ts index d905fbc0..142e7b0e 100644 --- a/backend/src/plugins/Automod/triggers/matchAttachmentType.ts +++ b/backend/src/plugins/Automod/triggers/matchAttachmentType.ts @@ -72,7 +72,7 @@ export const MatchAttachmentTypeTrigger = automodTrigger()({ return ( asSingleLine(` Matched attachment type \`${Util.escapeInlineCode(matchResult.extra.matchedType)}\` - (${matchResult.extra.mode === "blacklist" ? "(blacklisted)" : "(not in whitelist)"}) + (${matchResult.extra.mode === "blacklist" ? "blacklisted" : "not in whitelist"}) in message (\`${contexts[0].message!.id}\`) in ${prettyChannel}: `) + messageSummary(contexts[0].message!) );