Fix typo preventing reactive updates from working

This commit is contained in:
Adam Goldsmith 2021-05-09 09:58:00 -04:00
parent fab1483f18
commit cd7c979d10
1 changed files with 1 additions and 1 deletions

View File

@ -107,7 +107,7 @@ class ArkhamDBUpdater(commands.Bot):
# don't to react to the bot's changes, and only update registered channels
if message.author.id != self.user.id and \
message.channel.id in self.channel_list:
await self.update_channel_latest_decks(message)
await self.update_channel_latest_decks(message.channel)
async def on_message(self, message: discord.Message):
await self.process_commands(message)