mirror of
https://github.com/meisnate12/Plex-Meta-Manager
synced 2024-11-10 06:54:21 +00:00
allow original_language filter for shows
This commit is contained in:
parent
672cdbd2ce
commit
a6ae03db31
1 changed files with 1 additions and 3 deletions
|
@ -147,7 +147,6 @@ movie_only_filters = [
|
||||||
"country", "country.not",
|
"country", "country.not",
|
||||||
"director", "director.not",
|
"director", "director.not",
|
||||||
"duration.gt", "duration.gte", "duration.lt", "duration.lte",
|
"duration.gt", "duration.gte", "duration.lt", "duration.lte",
|
||||||
"original_language", "original_language.not",
|
|
||||||
"subtitle_language", "subtitle_language.not",
|
"subtitle_language", "subtitle_language.not",
|
||||||
"resolution", "resolution.not",
|
"resolution", "resolution.not",
|
||||||
"writer", "writer.not"
|
"writer", "writer.not"
|
||||||
|
@ -738,8 +737,7 @@ class CollectionBuilder:
|
||||||
elif method_name in plex.item_advance_keys:
|
elif method_name in plex.item_advance_keys:
|
||||||
key, options = plex.item_advance_keys[method_name]
|
key, options = plex.item_advance_keys[method_name]
|
||||||
if method_name in advance_new_agent and self.library.agent not in plex.new_plex_agents:
|
if method_name in advance_new_agent and self.library.agent not in plex.new_plex_agents:
|
||||||
logger.error(
|
logger.error(f"Metadata Error: {method_name} attribute only works for with the New Plex Movie Agent and New Plex TV Agent")
|
||||||
f"Metadata Error: {method_name} attribute only works for with the New Plex Movie Agent and New Plex TV Agent")
|
|
||||||
elif method_name in advance_show and not self.library.is_show:
|
elif method_name in advance_show and not self.library.is_show:
|
||||||
logger.error(f"Metadata Error: {method_name} attribute only works for show libraries")
|
logger.error(f"Metadata Error: {method_name} attribute only works for show libraries")
|
||||||
elif str(method_data).lower() not in options:
|
elif str(method_data).lower() not in options:
|
||||||
|
|
Loading…
Reference in a new issue