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

Fix discover bug
pull/459/head
daniel 7 years ago committed by GitHub
commit 54e69817a2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -29,7 +29,10 @@ class DiscoverController extends Controller
->whereIn('filter_type', ['mute', 'block'])
->pluck('filterable_id');
$following->push($pid);
$following->push($filtered);
if($filtered->count() > 0) {
$following->push($filtered);
}
$people = Profile::inRandomOrder()
->whereNotIn('id', $following)

Loading…
Cancel
Save