From 6a045072594cea397f612f69b2ea62b871732bce Mon Sep 17 00:00:00 2001 From: meisnate12 Date: Wed, 28 Feb 2024 15:42:02 -0500 Subject: [PATCH] [33] fixed trakt_userlist --- CHANGELOG | 2 ++ VERSION | 2 +- modules/trakt.py | 2 +- 3 files changed, 4 insertions(+), 2 deletions(-) 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":