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

@@ -143,7 +143,8 @@ class Jellyfin:
return []
libraries = []
for library in self.__get_jellyfin_librarys(username) or []:
if hidden and self._sync_libraries and library.get("Id") not in self._sync_libraries:
if hidden and self._sync_libraries and "all" not in self._sync_libraries \
and library.get("Id") not in self._sync_libraries:
continue
match library.get("CollectionType"):
case "movies":