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
-2
View File
@@ -136,8 +136,6 @@ class Emby:
return [] return []
libraries = [] libraries = []
for library in self.__get_emby_librarys(username) or []: 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"): match library.get("CollectionType"):
case "movies": case "movies":
library_type = MediaType.MOVIE.value library_type = MediaType.MOVIE.value
-2
View File
@@ -132,8 +132,6 @@ class Jellyfin:
return [] return []
libraries = [] libraries = []
for library in self.__get_jellyfin_librarys(username) or []: 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"): match library.get("CollectionType"):
case "movies": case "movies":
library_type = MediaType.MOVIE.value library_type = MediaType.MOVIE.value
-2
View File
@@ -113,8 +113,6 @@ class Plex:
return [] return []
libraries = [] libraries = []
for library in self._libraries: for library in self._libraries:
if self._sync_libraries and library.key not in self._sync_libraries:
continue
match library.type: match library.type:
case "movie": case "movie":
library_type = MediaType.MOVIE.value library_type = MediaType.MOVIE.value