diff --git a/src/server/app/Service/WatchlistService.php b/src/server/app/Service/WatchlistService.php index 0f3a12bd9c7ac5f7e2fe1d1a2d81cda9124c2cf3..426fd5d40406b2fa507e078dfc327fd718ebcd13 100644 --- a/src/server/app/Service/WatchlistService.php +++ b/src/server/app/Service/WatchlistService.php @@ -195,7 +195,7 @@ class WatchlistService if ($watchlistsGetRequest->sortBy == "DATE") $watchlistsGetRequest->sortBy = "w.created_at"; - $result = $this->watchlistRepository->findAllCustom($watchlistsGetRequest->userId, $watchlistsGetRequest->search, $watchlistsGetRequest->category, $watchlistsGetRequest->sortBy, $watchlistsGetRequest->order, $watchlistsGetRequest->tag, $watchlistsGetRequest->page, 2); + $result = $this->watchlistRepository->findAllCustom($watchlistsGetRequest->userId, $watchlistsGetRequest->search, $watchlistsGetRequest->category, $watchlistsGetRequest->sortBy, $watchlistsGetRequest->order, $watchlistsGetRequest->tag, $watchlistsGetRequest->page, 10); return $result; }