diff --git a/commands/General/shorturl.js b/commands/General/shorturl.js index 7ce342a1..d61ff90b 100644 --- a/commands/General/shorturl.js +++ b/commands/General/shorturl.js @@ -47,10 +47,10 @@ class Shorturl extends BaseCommand { */ async execute(client, interaction) { const url = interaction.options.getString("url"); - const res = await fetch(`https://is.gd/create.php?format=simple&url=${encodeURIComponent(url)}`).then(res => res.text()); + const res = await fetch(`http://jababot.ru/yourls/yourls-api.php?signature=fdf1397cfe&action=shorturl&url=${encodeURIComponent(url)}&format=json`).then(res => res.json()); interaction.reply({ - content: `<${res}>`, + content: `<${res.shorturl}>`, ephemeral: true, }); }