[33] fixed trakt_userlist

pull/1894/head
meisnate12 3 months ago
parent c75e017009
commit 6a04507259

@ -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 the Rate Limit on MDbList calls
Fixed collection fields being locked during batch edits when they shouldn't be 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 awards dynamic collections where `latest` wasn't pulling the correct values
Fixed `imdb_watchlist`
Fixed `trakt_userlist`
Various other Minor Fixes Various other Minor Fixes

@ -1 +1 @@
1.20.0-develop32 1.20.0-develop33

@ -496,7 +496,7 @@ class Trakt:
else: else:
if "userlist" not in dict_methods: if "userlist" not in dict_methods:
raise Failed(f"{err_type} Error: {method_name} userlist attribute not found") 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: if not og_list:
raise Failed(f"{err_type} Error: {method_name} userlist attribute is blank") raise Failed(f"{err_type} Error: {method_name} userlist attribute is blank")
if og_list == "collected": if og_list == "collected":

Loading…
Cancel
Save