diff --git a/src/jellyfin.py b/src/jellyfin.py index 8bd3ce8..f124139 100644 --- a/src/jellyfin.py +++ b/src/jellyfin.py @@ -172,6 +172,10 @@ async def process_movie_library( movies = await asyncio.gather(*movies_task) + # Combine the list of watched and in-progress movies + movies = movies[0]["Items"] + movies[1]["Items"] + + await self.process_watched_movies( user_watched, library_title, movies, user_name )