mirror of
https://github.com/meisnate12/Plex-Meta-Manager
synced 2024-11-10 06:54:21 +00:00
Fix variable type for Sort in AniList Userlist
This commit is contained in:
parent
29ab86267b
commit
99c4d46f8b
1 changed files with 1 additions and 1 deletions
|
@ -221,7 +221,7 @@ class AniList:
|
||||||
|
|
||||||
def _userlist(self, username, list_name, sort_by):
|
def _userlist(self, username, list_name, sort_by):
|
||||||
query = """
|
query = """
|
||||||
query ($user: String, $sort: MediaListStatus) {
|
query ($user: String, $sort: [MediaListSort]) {
|
||||||
MediaListCollection (userName: $user, sort: $sort, type: ANIME) {
|
MediaListCollection (userName: $user, sort: $sort, type: ANIME) {
|
||||||
lists {
|
lists {
|
||||||
name
|
name
|
||||||
|
|
Loading…
Reference in a new issue