mirror of
https://github.com/pkkid/python-plexapi
synced 2024-11-24 12:43:06 +00:00
identified issue in #595 fix for plex beta version 1.22.0.4136
fix confirmed working in previous stable version
This commit is contained in:
parent
58089fa982
commit
16a1c610ac
1 changed files with 1 additions and 1 deletions
|
@ -472,7 +472,7 @@ class LibrarySection(PlexObject):
|
||||||
""" Returns a list of available :class:`~plexapi.library.FilterField` for this library section.
|
""" Returns a list of available :class:`~plexapi.library.FilterField` for this library section.
|
||||||
"""
|
"""
|
||||||
items = []
|
items = []
|
||||||
key = '/library/sections/%s/filters?includeMeta=1' % self.key
|
key = '/library/sections/%s/all?includeMeta=1' % self.key
|
||||||
data = self._server.query(key)
|
data = self._server.query(key)
|
||||||
for meta in data.iter('Meta'):
|
for meta in data.iter('Meta'):
|
||||||
for metaType in meta.iter('Type'):
|
for metaType in meta.iter('Type'):
|
||||||
|
|
Loading…
Reference in a new issue