Skip to content

Commit

Permalink
Ensure that the correct args are passed in
Browse files Browse the repository at this point in the history
  • Loading branch information
No767 committed Dec 13, 2023
1 parent 6685490 commit b1fafff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bot/rodhaj.py
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ async def on_message(self, message: discord.Message) -> None:
return

# The thread is cached within an LRU cache to heavily speedup performance
cached_thread = await get_cached_thread(self, author.id)
cached_thread = await get_cached_thread(self, author.id, self.pool)

if cached_thread is not None:
dispatcher = GuildWebhookDispatcher(self, cached_thread.source_guild.id)
Expand Down

0 comments on commit b1fafff

Please sign in to comment.