Update DiscoverController, limit Loops to local only posts

pull/1703/head
Daniel Supernault 6 years ago
parent 007f27bf58
commit c19fe3cde8
No known key found for this signature in database
GPG Key ID: 0DEF1C662C9033F7

@ -78,8 +78,9 @@ class DiscoverController extends Controller
abort_if(!config('exp.loops'), 403);
// todo proper pagination, maybe LoopService
$res = Cache::remember('discover:loops:recent', now()->addHours(1), function() {
$res = Cache::remember('discover:loops:recent', now()->addHours(6), function() {
$loops = Status::whereType('video')
->whereNull('uri')
->whereScope('public')
->latest()
->take(18)

Loading…
Cancel
Save