Skip to content

Commit

Permalink
identified issue in #595 fix for plex beta version 1.22.0.4136
Browse files Browse the repository at this point in the history
fix confirmed working in previous stable version
  • Loading branch information
blacktwin committed Mar 4, 2021
1 parent 58089fa commit 16a1c61
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plexapi/library.py
Original file line number Diff line number Diff line change
Expand Up @@ -472,7 +472,7 @@ def filterFields(self, mediaType=None):
""" Returns a list of available :class:`~plexapi.library.FilterField` for this library section.
"""
items = []
key = '/library/sections/%s/filters?includeMeta=1' % self.key
key = '/library/sections/%s/all?includeMeta=1' % self.key
data = self._server.query(key)
for meta in data.iter('Meta'):
for metaType in meta.iter('Type'):
Expand Down

0 comments on commit 16a1c61

Please sign in to comment.