From e6319ffb225a045b749144b3d22b3ea308e40f66 Mon Sep 17 00:00:00 2001 From: meisnate12 Date: Tue, 8 Mar 2022 14:45:29 -0500 Subject: [PATCH] [6] fix auto_type --- VERSION | 2 +- modules/meta.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/VERSION b/VERSION index 6306ddb9..6ddbfc6c 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.16.0-develop5 +1.16.0-develop6 diff --git a/modules/meta.py b/modules/meta.py index 86eea8b0..99a8da85 100644 --- a/modules/meta.py +++ b/modules/meta.py @@ -286,7 +286,7 @@ class MetadataFile(DataFile): 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() - elif auto == "original_language": + elif auto_type == "original_language": if not all_items: all_items = library.get_all() for i, item in enumerate(all_items, 1):