forked from mirror/pixelfed
Update DiscoverController
This commit is contained in:
parent
d50e9c4df9
commit
fdf7f0e121
1 changed files with 1 additions and 3 deletions
|
@ -32,9 +32,7 @@ class DiscoverController extends Controller
|
||||||
'page' => 'nullable|integer|min:1|max:20',
|
'page' => 'nullable|integer|min:1|max:20',
|
||||||
]);
|
]);
|
||||||
|
|
||||||
$tag = Hashtag::with('posts')
|
$tag = Hashtag::whereSlug($hashtag)
|
||||||
->withCount('posts')
|
|
||||||
->whereSlug($hashtag)
|
|
||||||
->firstOrFail();
|
->firstOrFail();
|
||||||
|
|
||||||
$page = $request->input('page') ?? 1;
|
$page = $request->input('page') ?? 1;
|
||||||
|
|
Loading…
Reference in a new issue