This commit is contained in:
2025-02-13 15:48:39 -05:00
parent ef68728332
commit 43ecfc6633
2 changed files with 23 additions and 30 deletions

View File

@ -80,7 +80,8 @@ class MemeModal(discord.ui.Modal):
await interaction.response.send_message("ERR: Text is limited to 80 characters for each the top and bottom lines.")
return
meme_link: str = await self.meme_generator.create_meme(top_line=meme_top_line, bottom_line=meme_bottom_line, meme=selected_meme)
meme_link: str = await self.meme_generator.create_meme(top_line=meme_top_line,
bottom_line=meme_bottom_line, meme=selected_meme)
embed: discord.Embed = discord.Embed(title="Generated Meme")
embed.set_image(url=meme_link)