mirror of
https://github.com/wallabag/wallabag.git
synced 2025-02-17 03:05:19 +00:00
Fixed wrong number of entries for tag feeds.
This commit is contained in:
parent
e833fc4017
commit
fc7265f1b8
1 changed files with 3 additions and 0 deletions
|
@ -111,6 +111,9 @@ class FeedController extends Controller
|
||||||
$pagerAdapter,
|
$pagerAdapter,
|
||||||
$user
|
$user
|
||||||
);
|
);
|
||||||
|
|
||||||
|
$perPage = $user->getConfig()->getFeedLimit() ?: $this->getParameter('wallabag_core.feed_limit');
|
||||||
|
$entries->setMaxPerPage($perPage);
|
||||||
|
|
||||||
if (null === $entries) {
|
if (null === $entries) {
|
||||||
throw $this->createNotFoundException('No entries found?');
|
throw $this->createNotFoundException('No entries found?');
|
||||||
|
|
Loading…
Reference in a new issue