From 5a1cfcae29ca53297f746de023fb47553d96838e Mon Sep 17 00:00:00 2001 From: Dragon Fire Date: Sat, 7 Nov 2020 11:03:00 -0500 Subject: [PATCH] Fix --- commands/search/wikia.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/commands/search/wikia.js b/commands/search/wikia.js index 85df243c..2e88c762 100644 --- a/commands/search/wikia.js +++ b/commands/search/wikia.js @@ -68,7 +68,10 @@ module.exports = class WikiaCommand extends Command { async fetchArticle(wiki, id) { const { body } = await request .get(`https://${wiki}.fandom.com/api/v1/Articles/Details`) - .query({ ids: id }); + .query({ + ids: id, + abstract: 500 + }); return body.items[id.toString()]; } };