From bd0cbf8bf0db4187dafe7128cff33ae82575d11f Mon Sep 17 00:00:00 2001 From: OguzHAN Date: Mon, 25 May 2026 21:12:38 +0300 Subject: [PATCH] Remove hardcoded search result limit of 5 The search API call had a hardcoded limit=5 parameter which restricted search results to only 5 items regardless of how many matches exist. Removing this limit allows the server's default pagination to apply, showing all relevant search results to the user. Fixes #1872 --- pages/search.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages/search.vue b/pages/search.vue index 0eaa08f9..76882af5 100644 --- a/pages/search.vue +++ b/pages/search.vue @@ -122,7 +122,7 @@ export default { return } this.isFetching = true - const results = await this.$nativeHttp.get(`/api/libraries/${this.currentLibraryId}/search?q=${value}&limit=5`).catch((error) => { + const results = await this.$nativeHttp.get(`/api/libraries/${this.currentLibraryId}/search?q=${value}`).catch((error) => { console.error('Search error', error) return null })