diff --git a/backend/src/plugins/ModActions/functions/parseReason.ts b/backend/src/plugins/ModActions/functions/parseReason.ts index a52c21e2..93c8ea8c 100644 --- a/backend/src/plugins/ModActions/functions/parseReason.ts +++ b/backend/src/plugins/ModActions/functions/parseReason.ts @@ -8,7 +8,7 @@ export function parseReason(config: TConfigSchema, reason: string): string { reason = config.reason_aliases![reason.toLowerCase()] ?? reason; } if (reason!.length > MAX_REASON_LENGTH) { - reason = reason!.substring(0, MAX_REASON_LENGTH - 6) + " [...]"; + reason = reason!.substring(0, MAX_REASON_LENGTH - 4) + " […]"; } return reason; }