mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-26 00:03:16 +00:00
Merge pull request #2507 from pixelfed/staging
Update antispam bouncer, change recent from 1 week to 3 months
This commit is contained in:
commit
0f07c75df5
2 changed files with 2 additions and 1 deletions
|
@ -142,6 +142,7 @@
|
||||||
- Updated Timeline, remove simple mode and set labs deprecation date. ([df9c3adf](https://github.com/pixelfed/pixelfed/commit/df9c3adf))
|
- Updated Timeline, remove simple mode and set labs deprecation date. ([df9c3adf](https://github.com/pixelfed/pixelfed/commit/df9c3adf))
|
||||||
- Updated 2FA setup, fix qrcode handler. ([cd2661fc](https://github.com/pixelfed/pixelfed/commit/cd2661fc))
|
- Updated 2FA setup, fix qrcode handler. ([cd2661fc](https://github.com/pixelfed/pixelfed/commit/cd2661fc))
|
||||||
- Updated avatars, use jpeg default. ([f6528c84](https://github.com/pixelfed/pixelfed/commit/f6528c84))
|
- Updated avatars, use jpeg default. ([f6528c84](https://github.com/pixelfed/pixelfed/commit/f6528c84))
|
||||||
|
- Updated antispam bouncer, change recent from 1 week to 3 months. ([7d818197](https://github.com/pixelfed/pixelfed/commit/7d818197))
|
||||||
|
|
||||||
## [v0.10.9 (2020-04-17)](https://github.com/pixelfed/pixelfed/compare/v0.10.8...v0.10.9)
|
## [v0.10.9 (2020-04-17)](https://github.com/pixelfed/pixelfed/compare/v0.10.8...v0.10.9)
|
||||||
### Added
|
### Added
|
||||||
|
|
|
@ -18,7 +18,7 @@ class Bouncer {
|
||||||
$recentKey = 'pf:bouncer:recent_by_pid:' . $status->profile_id;
|
$recentKey = 'pf:bouncer:recent_by_pid:' . $status->profile_id;
|
||||||
$recentTtl = now()->addMinutes(5);
|
$recentTtl = now()->addMinutes(5);
|
||||||
$recent = Cache::remember($recentKey, $recentTtl, function() use($status) {
|
$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) {
|
if(!$recent) {
|
||||||
|
|
Loading…
Reference in a new issue