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!`); }