From 9413bb30085f2501559adea19ae4534dba3a1c85 Mon Sep 17 00:00:00 2001 From: Daniel Odendahl Jr Date: Mon, 15 May 2017 17:35:48 +0000 Subject: [PATCH] Fix for Wikipedia --- commands/search/wikipedia.js | 1 - 1 file changed, 1 deletion(-) diff --git a/commands/search/wikipedia.js b/commands/search/wikipedia.js index 2e392fd3..842b7857 100644 --- a/commands/search/wikipedia.js +++ b/commands/search/wikipedia.js @@ -41,7 +41,6 @@ module.exports = class WikipediaCommand extends Command { const embed = new RichEmbed() .setColor(0xE7E7E7) .setTitle(body.query.pages[0].title) - .setURL(`https://en.wikipedia.org/wiki/${query}`) .setAuthor('Wikipedia', 'https://i.imgur.com/a4eeEhh.png') .setDescription(body.query.pages[0].extract.substr(0, 2000).replace(/[\n]/g, '\n\n')); return msg.embed(embed);