mirror of
https://github.com/meisnate12/Plex-Meta-Manager
synced 2024-11-10 06:54:21 +00:00
Fix for regex filter tag attribute
Creates now the correct filter with regex, by using the correct language annotation.
This commit is contained in:
parent
203e085037
commit
77960b4f9e
1 changed files with 1 additions and 1 deletions
|
@ -2649,7 +2649,7 @@ class CollectionBuilder:
|
|||
for name, key in names:
|
||||
if name not in used and re.compile(reg).search(name):
|
||||
used.append(name)
|
||||
valid_list.append((name, key) if plex_search else key)
|
||||
valid_list.append((name, key) if plex_search else name)
|
||||
if not valid_list:
|
||||
error = f"Plex Error: {attribute}: No matches found with regex pattern {data}"
|
||||
if self.details["show_options"]:
|
||||
|
|
Loading…
Reference in a new issue