We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6a8046b commit 6730747Copy full SHA for 6730747
frontend/themes/js/made.js
@@ -104,7 +104,7 @@ function searchVideos() {
104
showLoading();
105
console.log("Fetching results from API");
106
try {
107
- w3.http(getAbsoluteUrl("api/v1/search?limit=20&q=" + query), function () {
+ w3.http(getAbsoluteUrl("api/v1/search?limit=50&q=" + query), function () {
108
if (this.readyState == 4) {
109
if (this.status == 200) {
110
renderSearchResults(JSON.parse(this.responseText));
0 commit comments