mirror of
https://github.com/Tautulli/Tautulli.git
synced 2025-07-10 23:42:37 -07:00
Fix API search not using the limit parameter
This commit is contained in:
parent
e949b1486e
commit
b6d044fe8f
2 changed files with 2 additions and 2 deletions
|
@ -3,7 +3,7 @@
|
|||
## v2.1.28 (2019-03-10)
|
||||
|
||||
* Monitoring:
|
||||
* New: Added secure/insecure connection icon on the activity cards. Requires Plex Media Server v1.15+
|
||||
* New: Added secure/insecure connection icon on the activity cards. Requires Plex Media Server v1.15+.
|
||||
* Other:
|
||||
* Change: Improved mass deleting of all images from Cloudinary. Requires all previous images on Cloudinary to be manually tagged with "tautulli". New uploads are automatically tagged.
|
||||
|
||||
|
|
|
@ -4354,7 +4354,7 @@ class WebInterface(object):
|
|||
```
|
||||
"""
|
||||
pms_connect = pmsconnect.PmsConnect()
|
||||
result = pms_connect.get_search_results(query)
|
||||
result = pms_connect.get_search_results(query=query, limit=limit)
|
||||
|
||||
if result:
|
||||
return result
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue