Skip to content

Commit

Permalink
Fix: Remove bogus space from limit parameter (#1073)
Browse files Browse the repository at this point in the history
  • Loading branch information
glensc authored Dec 21, 2022
1 parent 668fdbb commit e1e9a69
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plexapi/myplex.py
Original file line number Diff line number Diff line change
Expand Up @@ -949,7 +949,7 @@ def searchDiscover(self, query, limit=30, libtype=None):
}
params = {
'query': query,
'limit ': limit,
'limit': limit,
'searchTypes': libtype,
'includeMetadata': 1
}
Expand Down

0 comments on commit e1e9a69

Please sign in to comment.