From 79d6396fe6a38c95e47e63e438fa787cc56ca9aa Mon Sep 17 00:00:00 2001 From: meisnate12 Date: Fri, 12 May 2023 10:31:06 -0400 Subject: [PATCH] [57] reload for collectionless --- VERSION | 2 +- docs/config/paths.md | 2 +- modules/plex.py | 1 + 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/VERSION b/VERSION index 202d66cf..f029be66 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.19.0-develop56 +1.19.0-develop57 diff --git a/docs/config/paths.md b/docs/config/paths.md index af05671f..e96ab62e 100644 --- a/docs/config/paths.md +++ b/docs/config/paths.md @@ -10,7 +10,7 @@ The path types are outlined as follows: * `- folder:` refers to a directory containing metadata files which is located within the system that PMM is being run from. * `- url:` refers to a metadata file which is hosted publicly on the internet. * `- git:` refers to a metadata file which is hosted on the [Configs Repo](https://github.com/meisnate12/Plex-Meta-Manager-Configs). -* `- repo:` refers to a metadata file which is hosted on a custom repository specified aby the user with the [`custom_repo` Setting Attribute](settings.md#custom-repo). +* `- repo:` refers to a metadata file which is hosted on a custom repository specified by the user with the [`custom_repo` Setting Attribute](settings.md#custom-repo). ## YAML Controls diff --git a/modules/plex.py b/modules/plex.py index 7e21a2b7..3c9f5ad9 100644 --- a/modules/plex.py +++ b/modules/plex.py @@ -1058,6 +1058,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) for collection in item.collections: if str(collection.tag).lower() in collection_indexes: add_item = False