This commit is contained in:
insert 2024-08-11 14:11:53 -04:00
parent f5538cbd50
commit 989afd0b66
Signed by: insert
GPG key ID: A70775C389ACF105

View file

@ -119,7 +119,10 @@ class ApplicationModal(nextcord.ui.Modal):
try:
await interaction.send(message, ephemeral=True)
except:
await interaction.followup.send(message, ephemeral=True)
try:
await interaction.followup.send(message, ephemeral=True)
except:
await interaction.response.send_message(message, ephemeral=True)
class speechbubble(commands.Cog):