mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-10 00:34:50 +00:00
Do not recommend myself
Signed-off-by: Marcin Mikołajczak <me@m4sk.in>
This commit is contained in:
parent
efbb1017e7
commit
71c90c8f49
1 changed files with 2 additions and 2 deletions
|
@ -16,8 +16,8 @@ class DiscoverController extends Controller
|
|||
public function home()
|
||||
{
|
||||
$following = Follower::whereProfileId(Auth::user()->profile->id)->pluck('following_id');
|
||||
$people = Profile::inRandomOrder()->whereNotIn('id', $following)->take(3)->get();
|
||||
$posts = Status::whereHas('media')->whereNotIn('profile_id', $following)->orderBy('created_at', 'desc')->take('21')->get();
|
||||
$people = Profile::inRandomOrder()->where('id', '!=', Auth::user()->profile->id)->whereNotIn('id', $following)->take(3)->get();
|
||||
$posts = Status::whereHas('media')->where('profile_id', '!=', Auth::user()->profile->id)->whereNotIn('profile_id', $following)->orderBy('created_at', 'desc')->take('21')->get();
|
||||
return view('discover.home', compact('people', 'posts'));
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue