mirror of
https://github.com/pkkid/python-plexapi
synced 2024-11-24 12:43:06 +00:00
_cleanSearchFilter returns two elements
This commit is contained in:
parent
d26d8bc0f0
commit
58089fa982
1 changed files with 1 additions and 1 deletions
|
@ -665,7 +665,7 @@ class LibrarySection(PlexObject):
|
|||
args = {}
|
||||
for category, value in list(kwargs.items()):
|
||||
if category.split('__')[-1] not in OPERATORS:
|
||||
args[category] = self._cleanSearchFilter(category, value, libtype)
|
||||
args[category], libtype = self._cleanSearchFilter(category, value, libtype)
|
||||
del kwargs[category]
|
||||
if all([title, libtype]):
|
||||
args['title'] = title
|
||||
|
|
Loading…
Reference in a new issue