From 3ec062a5f58d162c8c6261c7adee08ab3c3b91ee Mon Sep 17 00:00:00 2001 From: meisnate12 Date: Wed, 15 Jun 2022 10:45:30 -0400 Subject: [PATCH] [39] season asset fix --- VERSION | 2 +- modules/operations.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/VERSION b/VERSION index 19b3eb34..381ba4ed 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.17.0-develop38 +1.17.0-develop39 diff --git a/modules/operations.py b/modules/operations.py index 39264569..bdb19d06 100644 --- a/modules/operations.py +++ b/modules/operations.py @@ -83,7 +83,7 @@ class Operations: logger.ghost(f"Processing: {i}/{len(items)} {item.title}") current_labels = [la.tag for la in self.library.item_labels(item)] if self.library.assets_for_all or self.library.mass_imdb_parental_labels else [] - if self.library.assets_for_all and self.library.asset_directory and "Overlay" not in current_labels: + if self.library.assets_for_all and self.library.asset_directory: self.library.find_and_upload_assets(item, current_labels) tmdb_id, tvdb_id, imdb_id = self.library.get_ids(item)