diff --git a/commands/search/anime.js b/commands/search/anime.js index 51504a29..211c210c 100644 --- a/commands/search/anime.js +++ b/commands/search/anime.js @@ -159,7 +159,11 @@ module.exports = class AnimeCommand extends Command { }, query: personalGraphQL }); - this.personalList = body.data.MediaListCollection.lists[0].entries; + const { lists } = body.data.MediaListCollection; + this.personalList = [ + ...lists.find(list => list.name === 'Watching'), + ...lists.find(list => list.name === 'Completed') + ]; setTimeout(() => { this.personalList = null; }, 3.6e+6); return this.personalList; }