diff --git a/commands/search/anime.js b/commands/search/anime.js index 317fcd71..78462b8d 100644 --- a/commands/search/anime.js +++ b/commands/search/anime.js @@ -14,7 +14,10 @@ const resultGraphQL = stripIndents` query media($id: Int, $type: MediaType) { Media(id: $id, type: $type) { id - title { userPreferred } + title { + english + userPreferred + } coverImage { large } startDate { year } description diff --git a/commands/search/manga.js b/commands/search/manga.js index 379a7ce4..05c5c938 100644 --- a/commands/search/manga.js +++ b/commands/search/manga.js @@ -14,7 +14,10 @@ const resultGraphQL = stripIndents` query media($id: Int, $type: MediaType) { Media(id: $id, type: $type) { id - title { userPreferred } + title { + english + userPreferred + } coverImage { large } startDate { year } description diff --git a/package.json b/package.json index eef0d9da..f222e9d0 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "xiao", - "version": "101.2.0", + "version": "101.2.1", "description": "Your personal server companion.", "main": "Xiao.js", "scripts": {