I'm trying to create a Christmas collection in my Music library of albums with "Christmas" in the album title.
According to the PMM documentation (https://metamanager.wiki/en/latest/metadata/builders/plex.html#string-attributes), the proper filter attribute to use would be "album_title".
However, when I run the following:
collections:
Christmas:
name: "🎅 Christmas"
sync_mode: sync
schedule: range(12/01-12/31)
delete_not_scheduled: true
sort_title: "!000_11_Christmas"
summary: "Christmas Music"
file_poster: config/assets/Artwork/Seasons/Christmas/Poster.jpg
collection_order: alpha
minimum_items: 1
visible_home: true
visible_library: true
visible_shared: true
plex_all: true
filters:
album_title: Christmas
I get the following error message:
Validating Method: filters
Value: {'album_title': 'Christmas'}
Traceback (most recent call last):
File "//plex_meta_manager.py", line 670, in run_collection
builder = CollectionBuilder(config, metadata, mapping_name, collection_attrs, library=library, extra=output_str)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/modules/builder.py", line 1054, in init
self._filters(method_name, method_data)
File "/modules/builder.py", line 1852, in _filters
raise Failed(message)
modules.util.Failed: Collection Error: album_title is not a valid filter attribute
Collection Error: album_title is not a valid filter attribute
Can anyone tell me what I'm doing wrong and/or how to get around this error?