diff --git a/VERSION b/VERSION index 0610804d..b4ff05fc 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.18.3-develop168 +1.18.3-develop169 diff --git a/modules/plex.py b/modules/plex.py index 4a9ebc49..9061cf92 100644 --- a/modules/plex.py +++ b/modules/plex.py @@ -1045,13 +1045,13 @@ class Plex(Library): for col in good_collections: logger.info(col.title) logger.info("") - collection_indexes = [c.title for c in good_collections] + collection_indexes = [str(c.title).lower() for c in good_collections] all_items = self.get_all() for i, item in enumerate(all_items, 1): logger.ghost(f"Processing: {i}/{len(all_items)} {item.title}") add_item = True for collection in item.collections: - if collection.tag in collection_indexes: + if str(collection.tag).lower() in collection_indexes: add_item = False break if add_item: