We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ad549a7 commit 8a7797bCopy full SHA for 8a7797b
misc/SerialCord/main.py
@@ -58,13 +58,13 @@ async def get_home_ip(interaction):
58
async with session.get('https://api.ipify.org') as r:
59
public_ip = await r.text()
60
except Exception as e:
61
- return await interaction.response.send(
+ return await interaction.followup.send(
62
f'❌ Nie udało się pobrać IP: {e}',
63
ephemeral=True,
64
)
65
66
try:
67
- await interaction.response.send(
+ await interaction.followup.send(
68
'Zwrócono adres IP w prywatnej wiadomości.',
69
70
0 commit comments