Browse Source

[commands] Fix Context.reply not working with expired interactions

pull/7909/head
Rapptz 3 years ago
parent
commit
cd0d6749ea
  1. 5
      discord/ext/commands/context.py

5
discord/ext/commands/context.py

@ -541,7 +541,10 @@ class Context(discord.abc.Messageable, Generic[BotT]):
:class:`~discord.Message`
The message that was sent.
"""
return await self.send(content, reference=self.message, **kwargs)
if self.interaction is None:
return await self.send(content, reference=self.message, **kwargs)
else:
return await self.send(content, **kwargs)
async def defer(self, *, ephemeral: bool = False) -> None:
"""|coro|

Loading…
Cancel
Save