[54] fix trakt recommendations

This commit is contained in:
meisnate12 2023-02-02 09:34:51 -05:00
parent 944b161715
commit 5305e22674
2 changed files with 2 additions and 2 deletions

View file

@ -1 +1 @@
1.18.3-develop53
1.18.3-develop54

View file

@ -473,7 +473,7 @@ class Trakt:
final_dict["status"] = util.parse(err_type, "status", trakt_dict, methods=dict_methods, parent=method_name, datatype="commalist", options=status)
valid_dicts.append(final_dict)
else:
userlist = util.parse(err_type, "userlist", trakt_dict, methods=dict_methods, parent=method_name, options=["recommended", "watched", "collected", "watchlist"])
userlist = util.parse(err_type, "userlist", trakt_dict, methods=dict_methods, parent=method_name, options=["recommendations", "watched", "collected", "watchlist"])
user = util.parse(err_type, "user", trakt_dict, methods=dict_methods, parent=method_name, default="me")
sort_by = None
if userlist in ["recommended", "watchlist"] and "sort_by" in dict_methods: