mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-18 12:31:27 +00:00
Merge pull request #422 from pixelfed/frontend-ui-refactor
Frontend ui refactor
This commit is contained in:
commit
6af9389479
1 changed files with 2 additions and 3 deletions
|
@ -28,11 +28,10 @@ class DiscoverController extends Controller
|
||||||
->whereFilterableType('App\Profile')
|
->whereFilterableType('App\Profile')
|
||||||
->whereIn('filter_type', ['mute', 'block'])
|
->whereIn('filter_type', ['mute', 'block'])
|
||||||
->pluck('filterable_id');
|
->pluck('filterable_id');
|
||||||
|
$following->push($pid);
|
||||||
$following = $following->push($filtered);
|
$following->push($filtered);
|
||||||
|
|
||||||
$people = Profile::inRandomOrder()
|
$people = Profile::inRandomOrder()
|
||||||
->where('id', '!=', $pid)
|
|
||||||
->whereNotIn('id', $following)
|
->whereNotIn('id', $following)
|
||||||
->take(3)
|
->take(3)
|
||||||
->get();
|
->get();
|
||||||
|
|
Loading…
Reference in a new issue