mirror of
https://github.com/meisnate12/Plex-Meta-Manager
synced 2024-11-10 06:54:21 +00:00
remove metadata_backup loading twice
This commit is contained in:
parent
6cb6cbca0e
commit
baa56d79bb
2 changed files with 3 additions and 3 deletions
|
@ -91,11 +91,10 @@ class Library(ABC):
|
|||
|
||||
self.items_library_operation = self.assets_for_all or self.mass_genre_update or self.mass_audience_rating_update \
|
||||
or self.mass_critic_rating_update or self.mass_trakt_rating_update or self.genre_mapper \
|
||||
or self.tmdb_collections or self.radarr_add_all_existing or self.sonarr_add_all_existing \
|
||||
or self.metadata_backup
|
||||
or self.tmdb_collections or self.radarr_add_all_existing or self.sonarr_add_all_existing
|
||||
self.library_operation = self.items_library_operation or self.delete_unmanaged_collections or self.delete_collections_with_less \
|
||||
or self.radarr_remove_by_tag or self.sonarr_remove_by_tag or self.mass_collection_mode \
|
||||
or self.genre_collections or self.show_unmanaged
|
||||
or self.genre_collections or self.show_unmanaged or self.metadata_backup
|
||||
metadata = []
|
||||
for file_type, metadata_file in self.metadata_path:
|
||||
if file_type == "Folder":
|
||||
|
|
|
@ -448,6 +448,7 @@ def library_operations(config, library):
|
|||
logger.debug(f"Genre Mapper: {library.genre_mapper}")
|
||||
logger.debug(f"Metadata Backup: {library.metadata_backup}")
|
||||
logger.debug(f"Item Operation: {library.items_library_operation}")
|
||||
logger.debug("")
|
||||
|
||||
if library.split_duplicates:
|
||||
items = library.search(**{"duplicate": True})
|
||||
|
|
Loading…
Reference in a new issue