From 083dee7842e2d7610069a819d4f734fea9eb7212 Mon Sep 17 00:00:00 2001 From: Dragon Fire Date: Tue, 9 Jul 2019 20:24:26 -0400 Subject: [PATCH] Fix --- commands/search/anime.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/commands/search/anime.js b/commands/search/anime.js index 211c210c..6bbae0d9 100644 --- a/commands/search/anime.js +++ b/commands/search/anime.js @@ -161,8 +161,8 @@ module.exports = class AnimeCommand extends Command { }); const { lists } = body.data.MediaListCollection; this.personalList = [ - ...lists.find(list => list.name === 'Watching'), - ...lists.find(list => list.name === 'Completed') + ...lists.find(list => list.name === 'Watching').entries, + ...lists.find(list => list.name === 'Completed').entries ]; setTimeout(() => { this.personalList = null; }, 3.6e+6); return this.personalList;