From 16a1c610acc79b01b3148955dff509954e3e0417 Mon Sep 17 00:00:00 2001 From: blacktwin Date: Wed, 3 Mar 2021 22:32:09 -0500 Subject: [PATCH] identified issue in #595 fix for plex beta version 1.22.0.4136 fix confirmed working in previous stable version --- plexapi/library.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plexapi/library.py b/plexapi/library.py index 7bd35517..c8a61aa2 100644 --- a/plexapi/library.py +++ b/plexapi/library.py @@ -472,7 +472,7 @@ class LibrarySection(PlexObject): """ 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'):