Skip to content

Commit

Permalink
fix: plex watchlist not returning any items
Browse files Browse the repository at this point in the history
  • Loading branch information
davidemarcoli authored and dreulavelle committed Oct 11, 2024
1 parent 0dd561a commit bf34db5
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/program/content/plex_watchlist.py
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,6 @@ def _get_items_from_watchlist(self) -> list[str]:
imdb_id: str = next((guid.id.split("//")[-1] for guid in item.guids if guid.id.startswith("imdb://")), "")
if imdb_id and imdb_id.startswith("tt"):
watchlist_items.append(imdb_id)
self.recurring_items.add(imdb_id)
else:
logger.log("NOT_FOUND", f"Unable to extract IMDb ID from {item.title} ({item.year}) with data id: {imdb_id}")
else:
Expand Down

0 comments on commit bf34db5

Please sign in to comment.