Update DiscoverController

pull/2444/head
Daniel Supernault 2020-11-21 18:58:08 -07:00
rodzic ad527eb705
commit e08f646008
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 0DEF1C662C9033F7
1 zmienionych plików z 4 dodań i 2 usunięć

Wyświetl plik

@ -181,11 +181,13 @@ class DiscoverController extends Controller
$ttl = now()->addHours(2);
$res = Cache::remember($key, $ttl, function() use($range) {
if($range == '-1') {
$res = Status::orderBy('likes_count','desc')
$res = Status::whereVisibility('public')
->orderBy('likes_count','desc')
->take(12)
->get();
} else {
$res = Status::orderBy('likes_count','desc')
$res = Status::whereVisibility('public')
->orderBy('likes_count','desc')
->take(12)
->where('created_at', '>', now()->subDays($range))
->get();