Skip to content

Commit

Permalink
fix #113
Browse files Browse the repository at this point in the history
  • Loading branch information
jxxghp committed Aug 14, 2023
1 parent 6e182df commit 205e185
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/modules/plex/plex.py
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ def get_tv_episodes(self,
if not self._plex:
return {}
if item_id:
videos = self._plex.library.sectionByID(item_id).all()
videos = self._plex.fetchItem(item_id)
else:
videos = self._plex.library.search(title=title, year=year, libtype="show")
if not videos:
Expand Down

0 comments on commit 205e185

Please sign in to comment.