From bfc72be90de18fecb8f9d3acf197fb7cf4f84cbd Mon Sep 17 00:00:00 2001 From: jxxghp Date: Sat, 12 Aug 2023 18:26:12 +0800 Subject: [PATCH] fix #88 --- app/modules/plex/plex.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/modules/plex/plex.py b/app/modules/plex/plex.py index 380247a9..2a3eafa1 100644 --- a/app/modules/plex/plex.py +++ b/app/modules/plex/plex.py @@ -294,7 +294,7 @@ class Plex(metaclass=Singleton): 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: