From d48c90e776eadb597758c76e979e52b090293fc9 Mon Sep 17 00:00:00 2001 From: Daniel Odendahl Jr Date: Wed, 17 May 2017 21:14:35 +0000 Subject: [PATCH] Fix Danbooru --- commands/nsfw/danbooru.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/nsfw/danbooru.js b/commands/nsfw/danbooru.js index 56d5b702..1e9624a5 100644 --- a/commands/nsfw/danbooru.js +++ b/commands/nsfw/danbooru.js @@ -33,7 +33,7 @@ module.exports = class DanbooruCommand extends Command { limit: 1 }); if (!body.length) throw new Error('No Results.'); - return msg.say(query ? `Result for ${query}:` : 'Random Image:', { files: [`https://danbooru.domai.us${body[0].file_url}`] }) + return msg.say(query ? `Result for ${query}:` : 'Random Image:', { files: [`https://danbooru.donmai.us${body[0].file_url}`] }) .catch(err => msg.say(`${err.name}: ${err.message}`)); } catch (err) { return msg.say(`${err.name}: ${err.message}`);