Update
This commit is contained in:
parent
f5538cbd50
commit
989afd0b66
1 changed files with 4 additions and 1 deletions
|
@ -119,7 +119,10 @@ class ApplicationModal(nextcord.ui.Modal):
|
||||||
try:
|
try:
|
||||||
await interaction.send(message, ephemeral=True)
|
await interaction.send(message, ephemeral=True)
|
||||||
except:
|
except:
|
||||||
|
try:
|
||||||
await interaction.followup.send(message, ephemeral=True)
|
await interaction.followup.send(message, ephemeral=True)
|
||||||
|
except:
|
||||||
|
await interaction.response.send_message(message, ephemeral=True)
|
||||||
|
|
||||||
|
|
||||||
class speechbubble(commands.Cog):
|
class speechbubble(commands.Cog):
|
||||||
|
|
Loading…
Reference in a new issue