Merge pull request #930 from pixelfed/frontend-ui-refactor

Update DiscoverController
This commit is contained in:
daniel 2019-03-02 12:12:00 -07:00 committed by GitHub
commit 37e44e488a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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;