Fix API search not using the limit parameter

This commit is contained in:
JonnyWong16 2019-03-17 17:59:18 -07:00
parent e949b1486e
commit b6d044fe8f
2 changed files with 2 additions and 2 deletions

View file

@ -3,7 +3,7 @@
## v2.1.28 (2019-03-10) ## v2.1.28 (2019-03-10)
* Monitoring: * 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: * 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. * 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.

View file

@ -4354,7 +4354,7 @@ class WebInterface(object):
``` ```
""" """
pms_connect = pmsconnect.PmsConnect() pms_connect = pmsconnect.PmsConnect()
result = pms_connect.get_search_results(query) result = pms_connect.get_search_results(query=query, limit=limit)
if result: if result:
return result return result