diff --git a/CHANGELOG b/CHANGELOG index 04631bbf..08c76ad7 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -9,7 +9,7 @@ Added the `character` search option to the `imdb_search` builder # Defaults Fixed incorrect content rating mappings in various Default files Fixes an issue where Prime Video overlays/collections would not be built when the `watch_region` is set to AU -fixes an issue where Rotten Tomatoes Verified Hot wasn't working +Fixes an issue where Rotten Tomatoes Verified Hot wasn't working Updates `Alien vs Predator` and `X-Men` lists to new lists which include most recent releases Adds `style` template variable for Streaming and Chart defaults, allowing user to choose color or white logos for collection posters @@ -21,4 +21,5 @@ Fixes #2274 Enhance handling of smart collections in deletion Fixed the `ids_to_anidb` lookup for anime movies and shows Fixes an issue where episode overlays sometimes wouldn't be added Fixes an issue with IMDb Parental Labels not working -Fixes an issue where OMDb returned `N/A` as the content rating \ No newline at end of file +Fixes an issue where OMDb returned `N/A` as the content rating +Fixes an issue where `plex_collectionless` doesn't work if the item was added to a collection in the same run diff --git a/VERSION b/VERSION index 2a96a840..2f085637 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -2.1.0-build15 +2.1.0-build16 diff --git a/defaults/overlays/ratings.yml b/defaults/overlays/ratings.yml index fd33ed14..941337ae 100644 --- a/defaults/overlays/ratings.yml +++ b/defaults/overlays/ratings.yml @@ -92,7 +92,7 @@ templates: default: true conditions: - image_level: Top - rating<>_image: [anidb, letterboxd, rt_popcorn, mdb, tmdb, trakt, mal, star] + rating<>_image: [anidb, letterboxd, mdb, tmdb, trakt, mal, star] value: false - image_level: Top builder_level: episode diff --git a/modules/plex.py b/modules/plex.py index d5e4a560..93da2729 100644 --- a/modules/plex.py +++ b/modules/plex.py @@ -1172,7 +1172,7 @@ class Plex(Library): for i, item in enumerate(all_items, 1): logger.ghost(f"Processing: {i}/{len(all_items)} {item.title}") add_item = True - item = self.reload(item) + item = self.reload(item, force=True) for collection in item.collections: if str(collection.tag).lower() in collection_indexes: add_item = False