diff --git a/CHANGELOG b/CHANGELOG index 63df5551..9473a405 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -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 diff --git a/VERSION b/VERSION index 814d2878..e993f93d 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.20.0-develop32 +1.20.0-develop33 diff --git a/modules/trakt.py b/modules/trakt.py index 2a3ece15..f167547f 100644 --- a/modules/trakt.py +++ b/modules/trakt.py @@ -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":