Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,9 @@ Changes since 2026.06.15
### Moderator
- Fix /mute command using the wrong datetime object

### Modlog
- Fix the data entry field for the automod block action type

### Nickname
- Fix config call missing guild ID

Expand Down
2 changes: 1 addition & 1 deletion modules/moderation/modlog.py
Original file line number Diff line number Diff line change
Expand Up @@ -420,7 +420,7 @@ async def on_automod_action(self: Self, execution: discord.AutoModAction) -> Non
guild=rule.guild,
member=member,
reason=rule.name,
data=f"**Violating name:** {member.display_name}",
data=f"**Violating content:** {execution.content[:200]}",
)
else:
await log_action(
Expand Down
Loading