fix search bug

This commit is contained in:
Philipinho
2025-10-08 23:20:27 +01:00
parent 05c63e83c8
commit 863eab68de
4 changed files with 25 additions and 35 deletions

View File

@ -62,7 +62,7 @@ export class SearchService {
)
.where('deletedAt', 'is', null)
.orderBy('rank', 'desc')
.limit(searchParams.limit | 20)
.limit(searchParams.limit | 25)
.offset(searchParams.offset || 0);
if (!searchParams.shareId) {