Skip to content

Commit

Permalink
fix #88
Browse files Browse the repository at this point in the history
  • Loading branch information
jxxghp committed Aug 12, 2023
1 parent 61af9ed commit bfc72be
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 @@ -294,7 +294,7 @@ def get_items(self, parent: str) -> Generator:
if not self._plex:
yield {}
try:
section = self._plex.library.sectionByID(parent)
section = self._plex.library.sectionByID(int(parent))
if section:
for item in section.all():
if not item:
Expand Down

0 comments on commit bfc72be

Please sign in to comment.