diff --git a/VERSION b/VERSION index c43b2197..4316ea97 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.16.0-develop9 +1.16.0-develop10 diff --git a/modules/meta.py b/modules/meta.py index ce748319..c7ec11ee 100644 --- a/modules/meta.py +++ b/modules/meta.py @@ -282,7 +282,7 @@ class MetadataFile(DataFile): for i, item in enumerate(all_items, 1): logger.ghost(f"Processing: {i}/{len(all_items)} {item.title}") tmdb_id, tvdb_id, imdb_id = library.get_ids(item) - tmdb_item = config.TMDb.get_item(item, tmdb_id, tvdb_id, imdb_id, is_movie=True) + tmdb_item = config.TMDb.get_item(item, tmdb_id, tvdb_id, imdb_id, is_movie=library.type == "Movie") if tmdb_item and tmdb_item.collection and tmdb_item.collection.id not in exclude and tmdb_item.collection.name not in exclude: auto_list[tmdb_item.collection.id] = tmdb_item.collection.name logger.exorcise()