From 3542b4dc79adb96498fedbfa9369ce272116f13c Mon Sep 17 00:00:00 2001 From: Esteban Vincent Date: Mon, 13 Oct 2025 19:54:41 +0200 Subject: [PATCH] =?UTF-8?q?fix(meme):=20ensure=20exception=20messages=20ar?= =?UTF-8?q?e=20sent=20to=20the=20interaction=20follow-up=20=F0=9F=90=9B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/main.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/main.py b/src/main.py index db4ebe6..06d18b1 100644 --- a/src/main.py +++ b/src/main.py @@ -56,6 +56,7 @@ async def meme(interaction: discord.Interaction, prompt: str): description=str(e), color=0xFF0000, ) + await interaction.followup.send(embed=embed) client.run(os.getenv("DISCORD_TOKEN"))