This commit is contained in:
InfinityPacer
2024-10-25 00:42:00 +08:00
parent 1d252f4eb2
commit b1858f4849
3 changed files with 6 additions and 3 deletions

View File

@@ -134,7 +134,8 @@ class Plex:
return []
libraries = []
for library in self._libraries:
if hidden and self._sync_libraries and str(library.key) not in self._sync_libraries:
if hidden and self._sync_libraries and "all" not in self._sync_libraries \
and str(library.key) not in self._sync_libraries:
continue
match library.type:
case "movie":