We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 549e76b commit d03a274Copy full SHA for d03a274
plexapi/myplex.py
@@ -565,7 +565,7 @@ def _filterDictToStr(self, filterDict):
565
""" Converts friend filters to a string representation for transport. """
566
values = []
567
for key, vals in filterDict.items():
568
- if key not in ('contentRating', 'label'):
+ if key not in ('contentRating', 'label', 'contentRating!', 'label!'):
569
raise BadRequest('Unknown filter key: %s', key)
570
values.append('%s=%s' % (key, '%2C'.join(vals)))
571
return '|'.join(values)
0 commit comments