Skip to content

Commit 1abc433

Browse files
committed
Fix search paging
1 parent b4bf5cc commit 1abc433

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

grails-app/services/marketplace/SearchableService.groovy

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,9 @@ class SearchableService {
1818
log.debug 'searchListings:'
1919

2020

21-
def ops = [types: searchCriteria.TYPES_TO_SEARCH]
21+
def ops = [size: searchCriteria.max,
22+
from: searchCriteria.offset,
23+
types: searchCriteria.TYPES_TO_SEARCH]
2224

2325
def retry = true
2426

0 commit comments

Comments
 (0)