mirror of
https://github.com/meisnate12/Plex-Meta-Manager
synced 2024-11-10 06:54:21 +00:00
additional fix #139
This commit is contained in:
parent
e4eb7b6e47
commit
76e437abdc
1 changed files with 1 additions and 1 deletions
|
@ -450,7 +450,7 @@ class CollectionBuilder:
|
|||
self.methods.append((method_name, [new_dictionary]))
|
||||
elif method_name == "plex_search":
|
||||
searches = {}
|
||||
for search_name, search_data in method_data:
|
||||
for search_name, search_data in method_data.items():
|
||||
search, modifier = os.path.splitext(str(search_name).lower())
|
||||
if search in util.method_alias:
|
||||
search = util.method_alias[search]
|
||||
|
|
Loading…
Reference in a new issue