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:
blacktwin 2021-03-03 22:32:09 -05:00
parent 58089fa982
commit 16a1c610ac

View file

@ -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'):