fix(tts): awaited a coroutine

This commit is contained in:
Seaswimmer 2024-02-21 11:48:27 -05:00
parent 567f51fb45
commit 17312348fc
Signed by untrusted user: cswimr
GPG key ID: B8953EC01E5C4063

View file

@ -45,7 +45,7 @@ class TTS(commands.Cog):
@commands.admin_or_permissions(manage_guild=True)
async def tts(self, ctx: commands.Context):
"""Text to Speech settings"""
await ctx.send(embed=embed, view=Menu(ctx))
await ctx.send(embed=await embed(ctx), view=Menu(ctx))
@tts.command(name="google")
@commands.is_owner()