mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-09 16:24:51 +00:00
Fixes #1485
This commit is contained in:
parent
b5c017a2ba
commit
4ca415e181
1 changed files with 1 additions and 1 deletions
|
@ -138,7 +138,7 @@ class DiscoverController extends Controller
|
|||
]);
|
||||
|
||||
$page = $request->input('page') ?? '1';
|
||||
$end = $page > 1 ? $page * 9 : 1;
|
||||
$end = $page > 1 ? $page * 9 : 0;
|
||||
$tag = $request->input('hashtag');
|
||||
|
||||
$hashtag = Hashtag::whereName($tag)->firstOrFail();
|
||||
|
|
Loading…
Reference in a new issue