mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-12-25 01:05:36 +00:00
Merge pull request #93 from neilalexander/patch-2
Use inRandomOrder instead of orderByRaw in Discover page
This commit is contained in:
commit
7c4a383a65
2 changed files with 4 additions and 4 deletions
|
@ -41,10 +41,10 @@ class SeedFollows extends Command
|
|||
{
|
||||
$limit = 10000;
|
||||
|
||||
for ($i=0; $i < $limit; $i++) {
|
||||
for ($i=0; $i < $limit; $i++) {
|
||||
try {
|
||||
$actor = Profile::orderByRaw('rand()')->firstOrFail();
|
||||
$target = Profile::orderByRaw('rand()')->firstOrFail();
|
||||
$actor = Profile::inRandomOrder()->firstOrFail();
|
||||
$target = Profile::inRandomOrder()->firstOrFail();
|
||||
|
||||
$follow = new Follower;
|
||||
$follow->profile_id = $actor->id;
|
||||
|
|
|
@ -16,7 +16,7 @@ class DiscoverController extends Controller
|
|||
public function home()
|
||||
{
|
||||
$following = Follower::whereProfileId(Auth::user()->profile->id)->pluck('following_id');
|
||||
$people = Profile::whereNotIn('id', $following)->orderByRaw('rand()')->take(3)->get();
|
||||
$people = Profile::inRandomOrder()->whereNotIn('id', $following)->take(3)->get();
|
||||
$posts = Status::whereHas('media')->whereNotIn('profile_id', $following)->orderBy('created_at', 'desc')->take('21')->get();
|
||||
return view('discover.home', compact('people', 'posts'));
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue