diff --git a/src/utils/audit-log-utils.ts b/src/utils/audit-log-utils.ts index 7204c6e..dda15bb 100644 --- a/src/utils/audit-log-utils.ts +++ b/src/utils/audit-log-utils.ts @@ -76,7 +76,7 @@ export function formatExtras(entry: GuildAuditLogsEntry, guild: Guild): string { for (const [key, value] of Object.entries(reserialized.extra ?? {})) { if (!value) continue; - if (key == 'channel_id') results.push(formatSnowflake(value as string, TargetType.Channel)); + if (key == 'channel_id' || key == 'channel') results.push(formatSnowflake(value as string, TargetType.Channel)); results.push(`${key}: ${value}`); }