diff --git a/VERSION b/VERSION index 0ee9ed4b..06b2fbb6 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.18.3-develop134 +1.18.3-develop135 diff --git a/modules/meta.py b/modules/meta.py index 5fcf7d9f..17545b9c 100644 --- a/modules/meta.py +++ b/modules/meta.py @@ -1276,8 +1276,9 @@ class MetadataFile(DataFile): for k, alts in self.set_collections[set_name].items(): if k in temp_data["collections"]: self.library.collection_images[k] = temp_data["collections"][k] - for alt in alts: - self.library.collection_images[alt] = temp_data["collections"][k] + if alts: + for alt in alts: + self.library.collection_images[alt] = temp_data["collections"][k] return self.library.image_sets[set_id] def get_collections(self, requested_collections):