I'm trying to make an embed link to a clickable audio channel in Discord for example this way: Click to Join But in the MessageEmbed This Code:
if (message.member.voice.channelID == null) return message.channel.send("null");
message.delete();
let link =
"https://discord.com/channels/" +
message.guild.id +
"/" +
message.member.voice.channelID;
message.channel.send(
new Discord.MessageEmbed().setDescription(
"[Click to Join](" + `${link}` + ")"
)
);
Probably my fault is on the link, I could not find anything on the internet.