mirror of
https://github.com/meisnate12/Plex-Meta-Manager
synced 2024-11-10 06:54:21 +00:00
update show_options
This commit is contained in:
parent
ae7643b38c
commit
02f9b6f7b6
1 changed files with 4 additions and 1 deletions
|
@ -391,7 +391,10 @@ class Plex(Library):
|
|||
names = []
|
||||
choices = {}
|
||||
for choice in self.Plex.listFilterChoices(final_search):
|
||||
names.append(choice.title if title else choice.key)
|
||||
if choice.title not in names:
|
||||
names.append(choice.title)
|
||||
if choice.key not in names:
|
||||
names.append(choice.key)
|
||||
choices[choice.title.lower()] = choice.title if title else choice.key
|
||||
choices[choice.key.lower()] = choice.title if title else choice.key
|
||||
return choices, names
|
||||
|
|
Loading…
Reference in a new issue