Update bouncer

This commit is contained in:
Daniel Supernault 2020-12-17 17:47:56 -07:00
parent 5fffe1d0dd
commit 5ac1746aff
No known key found for this signature in database
GPG key ID: 0DEF1C662C9033F7

View file

@ -18,7 +18,7 @@ class Bouncer {
$recentKey = 'pf:bouncer:recent_by_pid:' . $status->profile_id;
$recentTtl = now()->addMinutes(5);
$recent = Cache::remember($recentKey, $recentTtl, function() use($status) {
return $status->profile->created_at->gt(now()->subMonths(3)) || $status->profile->statuses()->count() == 0;
return $status->profile->created_at->gt(now()->subMonths(2)) || $status->profile->statuses()->count() == 0;
});
if(!$recent) {