From cbe6248fd552ee131cf7165c53cdca0ad9496193 Mon Sep 17 00:00:00 2001 From: Daniel Odendahl Jr Date: Sun, 8 Oct 2017 15:42:56 +0000 Subject: [PATCH] Fix --- commands/search/yu-gi-oh.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/commands/search/yu-gi-oh.js b/commands/search/yu-gi-oh.js index 1d69c96a..7f9e6007 100644 --- a/commands/search/yu-gi-oh.js +++ b/commands/search/yu-gi-oh.js @@ -25,10 +25,10 @@ module.exports = class YuGiOhCommand extends Command { async run(msg, { query }) { try { const { body } = await snekfetch - .get(`http://yugiohprices.com/api/card_data/${query}`); + .get(`https://yugiohprices.com/api/card_data/${query}`); if (body.status === 'fail') return msg.say('Could not find any results.'); const image = await snekfetch - .get(`http://yugiohprices.com/api/card_image/${query}`); + .get(`https://yugiohprices.com/api/card_image/${query}`); const { data } = body; const embed = new MessageEmbed() .setColor(0xBE5F1F)