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 6b1c827 commit 2662959Copy full SHA for 2662959
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.followup.send(
+ return await interaction.response.send(
62
f'❌ Nie udało się pobrać IP: {e}',
63
ephemeral=True,
64
)
65
66
try:
67
- interaction.followup.send(
+ interaction.response.send(
68
'Zwrócono adres IP w prywatnej wiadomości.',
69
70
0 commit comments