From 8bab601229c0507ab4b0cc050ff1c360f8acd4e2 Mon Sep 17 00:00:00 2001 From: Foxbond Date: Fri, 24 Jan 2025 14:37:11 +0100 Subject: [PATCH] Correctly read watched episodes --- utility/sync_watch_status.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utility/sync_watch_status.py b/utility/sync_watch_status.py index 3fa4ca7..86deb33 100644 --- a/utility/sync_watch_status.py +++ b/utility/sync_watch_status.py @@ -415,7 +415,7 @@ def batching_watched(section, libtype): if libtype == 'show': search_watched = section.search(libtype='episode', container_start=start, container_size=count, - **{'show.unwatchedLeaves': False}) + **{'episode.unwatched':False}) else: search_watched = section.search(unwatched=False, container_start=start, container_size=count) if all([search_watched]):