use my own shorturl domain

This commit is contained in:
Jonny_Bro (Nikita) 2023-10-08 13:59:40 +05:00
parent 83414e817a
commit 04bb802cc5

View file

@ -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,
});
}