mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-10 00:34:50 +00:00
Update antispam bouncer, change recent from 1 week to 3 months
This commit is contained in:
parent
be3ad6b15f
commit
7d818197bb
1 changed files with 1 additions and 1 deletions
|
@ -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()->subWeek()) || $status->profile->statuses()->count() == 0;
|
||||
return $status->profile->created_at->gt(now()->subMonths(3)) || $status->profile->statuses()->count() == 0;
|
||||
});
|
||||
|
||||
if(!$recent) {
|
||||
|
|
Loading…
Reference in a new issue