Browse Source

fix offset/limit

main
ghost 1 year ago
parent
commit
d3cdbc831c
  1. 8
      src/Repository/TorrentRepository.php

8
src/Repository/TorrentRepository.php

@ -26,8 +26,8 @@ class TorrentRepository extends ServiceEntityRepository @@ -26,8 +26,8 @@ class TorrentRepository extends ServiceEntityRepository
array $locales,
?bool $sensitive = null,
?bool $approved = null,
int $limit = 0,
int $offset = 10
int $limit = 10,
int $offset = 0
): int
{
return $this->getTorrentsQueryByFilter(
@ -45,8 +45,8 @@ class TorrentRepository extends ServiceEntityRepository @@ -45,8 +45,8 @@ class TorrentRepository extends ServiceEntityRepository
array $locales,
?bool $sensitive = null,
?bool $approved = null,
int $limit = 0,
int $offset = 10
int $limit = 10,
int $offset = 0
): array
{
return $this->getTorrentsQueryByFilter(

Loading…
Cancel
Save