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

Loading…
Cancel
Save