mirror of
https://github.com/meisnate12/Plex-Meta-Manager
synced 2024-11-22 04:23:08 +00:00
[33] fixed trakt_userlist
This commit is contained in:
parent
c75e017009
commit
6a04507259
3 changed files with 4 additions and 2 deletions
|
@ -24,5 +24,7 @@ Mass Update operations now can be given a list of sources to fall back on when o
|
|||
Fixed the Rate Limit on MDbList calls
|
||||
Fixed collection fields being locked during batch edits when they shouldn't be
|
||||
Fixed awards dynamic collections where `latest` wasn't pulling the correct values
|
||||
Fixed `imdb_watchlist`
|
||||
Fixed `trakt_userlist`
|
||||
|
||||
Various other Minor Fixes
|
||||
|
|
2
VERSION
2
VERSION
|
@ -1 +1 @@
|
|||
1.20.0-develop32
|
||||
1.20.0-develop33
|
||||
|
|
|
@ -496,7 +496,7 @@ class Trakt:
|
|||
else:
|
||||
if "userlist" not in dict_methods:
|
||||
raise Failed(f"{err_type} Error: {method_name} userlist attribute not found")
|
||||
og_list = trakt_dict[dict_methods["year"]]
|
||||
og_list = trakt_dict[dict_methods["userlist"]]
|
||||
if not og_list:
|
||||
raise Failed(f"{err_type} Error: {method_name} userlist attribute is blank")
|
||||
if og_list == "collected":
|
||||
|
|
Loading…
Reference in a new issue