Skip to content

Commit

Permalink
Update ?info command for pomelo
Browse files Browse the repository at this point in the history
  • Loading branch information
raidensakura committed Jun 15, 2023
1 parent 2a4615c commit a823517
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
10 changes: 6 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion cogs/utility.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down

0 comments on commit a823517

Please sign in to comment.