added a missing await to [p]podcast

This commit is contained in:
Seaswimmer 2023-03-05 00:11:32 -05:00
parent cdfa0e3815
commit 1079024f45

View file

@ -33,7 +33,7 @@ class Podcast(commands.Cog):
else:
return
if ctx.author.id in blacklisted_users:
ctx.author.send(content=f"You are blacklisted from ``{prefix}podcast``!")
await ctx.author.send(content=f"You are blacklisted from ``{prefix}podcast``!")
return
else:
await submission_channel.send(content=f"{question}")