mirror of
https://github.com/meisnate12/Plex-Meta-Manager
synced 2024-11-23 04:53:07 +00:00
fixed resolution for tv shows
This commit is contained in:
parent
0129210d76
commit
db71b30da3
1 changed files with 2 additions and 0 deletions
|
@ -503,6 +503,8 @@ class Plex:
|
|||
@retry(stop_max_attempt_number=6, wait_fixed=10000, retry_on_exception=util.retry_if_not_failed)
|
||||
def get_search_choices(self, search_name, title=True):
|
||||
final_search = search_translation[search_name] if search_name in search_translation else search_name
|
||||
if final_search == "resolution" and self.is_show:
|
||||
final_search = "episode.resolution"
|
||||
try:
|
||||
choices = {}
|
||||
for choice in self.Plex.listFilterChoices(final_search):
|
||||
|
|
Loading…
Reference in a new issue