diff --git a/CHANGELOG.md b/CHANGELOG.md index 6b0dc412a3..3f69741955 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -37,10 +37,12 @@ however, insignificant breaking changes do not guarantee a major version bump, s - `?alias make/create` as aliases to `?alias add`. This improves continuity between the bot and its command structure. ([PR #3195](https://github.com/kyb3r/modmail/pull/3195)) - Loading the blocked list with the `?blocked` command takes a long time when the list is large. ([PR #3242](https://github.com/kyb3r/modmail/pull/3242)) - Reply not being forwarded from DM. (PR [#3239](https://github.com/modmail-dev/modmail/pull/3239)) -- Fix changing from disabling all threads (`?disable all`) to new threads only (`?disable new`) not updating `dm_disabled` config -- A few typo in `config_help.json` and corrected its formatting -- Fixed typo for silent close command -- Fixed uncached member issue in large guild for react_to_contact and ticket creation +- Fix changing from disabling all threads (`?disable all`) to new threads only (`?disable new`) not updating `dm_disabled` config. +- A few typo in `config_help.json` and corrected its formatting. +- Fixed typo for silent close command. +- Fixed uncached member issue in large guild for react_to_contact and ticket creation. +- Fixed blocked roles improperly saving in `blocked_users` config. +- Fixed `?block` command improperly parsing reason as timestamp. # v4.0.2 diff --git a/cogs/utility.py b/cogs/utility.py index 5a9a4d9b5c..f4c1a5f663 100644 --- a/cogs/utility.py +++ b/cogs/utility.py @@ -333,7 +333,7 @@ async def about(self, ctx): if app_info.team: owner = app_info.team.name else: - owner = app_info.owner + owner = str(app_info.owner) embed.add_field( name="Bot Owner (Team)" if app_info.team else "Bot Owner",