From f083bfa4177a7ace54813542d05eac1c8cc21c81 Mon Sep 17 00:00:00 2001 From: Dragon Fire Date: Sat, 30 Jan 2021 23:13:36 -0500 Subject: [PATCH] fix --- commands/search/mdn.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/search/mdn.js b/commands/search/mdn.js index b680ef7a..3cdeb59c 100644 --- a/commands/search/mdn.js +++ b/commands/search/mdn.js @@ -42,7 +42,7 @@ module.exports = class MDNCommand extends Command { const embed = new MessageEmbed() .setColor(0x066FAD) .setAuthor('MDN', 'https://i.imgur.com/DFGXabG.png', 'https://developer.mozilla.org/') - .setURL(data.mdn_url) + .setURL(`https://developer.mozilla.org${data.mdn_url}`) .setTitle(data.title) .setDescription(data.summary); return msg.embed(embed);