This commit is contained in:
jxxghp
2024-09-12 08:16:02 +08:00
parent 186476ad31
commit f9895b2edd
3 changed files with 0 additions and 6 deletions

View File

@@ -136,8 +136,6 @@ class Emby:
return []
libraries = []
for library in self.__get_emby_librarys(username) or []:
if self._sync_libraries and library.get("Id") not in self._sync_libraries:
continue
match library.get("CollectionType"):
case "movies":
library_type = MediaType.MOVIE.value

View File

@@ -132,8 +132,6 @@ class Jellyfin:
return []
libraries = []
for library in self.__get_jellyfin_librarys(username) or []:
if self._sync_libraries and library.get("Id") not in self._sync_libraries:
continue
match library.get("CollectionType"):
case "movies":
library_type = MediaType.MOVIE.value

View File

@@ -113,8 +113,6 @@ class Plex:
return []
libraries = []
for library in self._libraries:
if self._sync_libraries and library.key not in self._sync_libraries:
continue
match library.type:
case "movie":
library_type = MediaType.MOVIE.value