Skip to content

Commit ba312ec

Browse files
committed
Remove latest updates section from about command
1 parent 3e52322 commit ba312ec

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ New command and improvements in bot update message interfaces.
1414
### Changed
1515
- Update command now shows latest changes directly from the [CHANGELOG.md](https://modmail.tk/) in the repo.
1616
- Auto update messages also show latest changes from repo.
17-
17+
- Remove latest changes section from the `about` command.
1818

1919
# v2.0.6
2020

cogs/utility.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -184,11 +184,9 @@ async def about(self, ctx):
184184
else:
185185
em.add_field(name='Latency', value=f'{self.bot.latency*1000:.2f} ms')
186186

187-
em.add_field(name='Version', value=f'[`{self.bot.version}`](https://github.com/kyb3r/modmail/blob/master/bot.py#L25)')
187+
em.add_field(name='Version', value=f'[`{self.bot.version}`](https://modmail.tk/changelog')
188188
em.add_field(name='Author', value='[`kyb3r`](https://github.com/kyb3r)')
189189

190-
em.add_field(name='Latest Updates', value=await self.bot.get_latest_updates())
191-
192190
footer = f'Bot ID: {self.bot.user.id}'
193191

194192
if meta:

0 commit comments

Comments
 (0)