mirror of
https://github.com/meisnate12/Plex-Meta-Manager
synced 2024-11-10 06:54:21 +00:00
fix for #228
This commit is contained in:
parent
60a2e34a6f
commit
6f256aa372
1 changed files with 1 additions and 1 deletions
|
@ -524,7 +524,7 @@ class CollectionBuilder:
|
|||
elif str(method_data).lower() not in options:
|
||||
logger.error(f"Metadata Error: {method_data} {method_name} attribute invalid")
|
||||
else:
|
||||
self.item_details[method_name] = str(method_data).lower()
|
||||
self.item_details[method_name] = options[str(method_data).lower()]
|
||||
elif method_name in boolean_details:
|
||||
self.details[method_name] = util.get_bool(method_name, method_data)
|
||||
elif method_name in all_details:
|
||||
|
|
Loading…
Reference in a new issue