Skip to content

Commit

Permalink
Jellyfin: Fix movies
Browse files Browse the repository at this point in the history
  • Loading branch information
luigi311 committed Jan 3, 2024
1 parent 6d78e75 commit dc2ec13
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/jellyfin.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
)
Expand Down

0 comments on commit dc2ec13

Please sign in to comment.