From 84e6b9283dfa65d2219258f7175087f31f06fee4 Mon Sep 17 00:00:00 2001 From: Rapptz Date: Tue, 19 Apr 2022 22:14:11 -0400 Subject: [PATCH] [commands] Fix delete_after not working with interaction Context.send --- discord/ext/commands/context.py | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/discord/ext/commands/context.py b/discord/ext/commands/context.py index 5562c958a..654407dda 100644 --- a/discord/ext/commands/context.py +++ b/discord/ext/commands/context.py @@ -727,7 +727,11 @@ class Context(discord.abc.Messageable, Generic[BotT]): } if self.interaction.response.is_done(): - return await self.interaction.followup.send(**kwargs, wait=True) + msg = await self.interaction.followup.send(**kwargs, wait=True) + else: + await self.interaction.response.send_message(**kwargs) + msg = await self.interaction.original_message() - await self.interaction.response.send_message(**kwargs) - return await self.interaction.original_message() + if delete_after is not None: + await msg.delete(delay=delete_after) + return msg