From e1e9a6995e59a304b9edb7eb5bc3344ddcbc3303 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Elan=20Ruusam=C3=A4e?= Date: Wed, 21 Dec 2022 23:10:48 +0200 Subject: [PATCH] Fix: Remove bogus space from limit parameter (#1073) --- plexapi/myplex.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plexapi/myplex.py b/plexapi/myplex.py index 2bb5dea83..eb9499a26 100644 --- a/plexapi/myplex.py +++ b/plexapi/myplex.py @@ -949,7 +949,7 @@ def searchDiscover(self, query, limit=30, libtype=None): } params = { 'query': query, - 'limit ': limit, + 'limit': limit, 'searchTypes': libtype, 'includeMetadata': 1 }