From 3c6ae829e549a889e034c75501805667561b3268 Mon Sep 17 00:00:00 2001 From: Daniel Odendahl Jr Date: Mon, 5 Mar 2018 22:49:58 +0000 Subject: [PATCH] Fix --- commands/search/danbooru.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/search/danbooru.js b/commands/search/danbooru.js index 7027003d..67b45329 100644 --- a/commands/search/danbooru.js +++ b/commands/search/danbooru.js @@ -34,7 +34,7 @@ module.exports = class DanbooruCommand extends Command { limit: 1 }); if (!body.length || !body[0].file_url) return msg.say('Could not find any results.'); - return msg.say(`https://danbooru.donmai.us${body[0].file_url}`); + return msg.say(body[0].file_url); } catch (err) { return msg.reply(`Oh no, an error occurred: \`${err.message}\`. Try again later!`); }