diff --git a/commands/search/derpibooru.js b/commands/search/derpibooru.js index e95f551c..7235b655 100644 --- a/commands/search/derpibooru.js +++ b/commands/search/derpibooru.js @@ -44,6 +44,6 @@ module.exports = class DerpibooruCommand extends Command { async fetchImage(id) { const { body } = await request.get(`https://derpibooru.org/images/${id}.json`); - return `${body.representations.full}`; + return `http:${body.representations.full}`; } };