Fix stripchat pagination
This commit is contained in:
parent
9828945ea4
commit
5eafd07d97
|
@ -49,7 +49,7 @@ public class StripchatUpdateService extends PaginatedScheduledService {
|
|||
return Collections.emptyList();
|
||||
} else {
|
||||
int offset = (getPage() - 1) * modelsPerPage;
|
||||
int limit = offset + modelsPerPage;
|
||||
int limit = modelsPerPage;
|
||||
String paginatedUrl = url + "&offset=" + offset + "&limit=" + limit;
|
||||
LOG.debug("Fetching page {}", paginatedUrl);
|
||||
if(loginRequired) {
|
||||
|
|
Loading…
Reference in New Issue