1
0
Fork 0

Update AP helpers, adjust RemoteAvatarFetch ttl from 24h to 3 months

This commit is contained in:
Daniel Supernault 2023-10-10 20:55:20 -06:00 committed by chris
parent d119e2577c
commit c55b9a08dd
1 changed files with 1 additions and 1 deletions

View File

@ -801,7 +801,7 @@ class Helpers {
);
if( $profile->last_fetched_at == null ||
$profile->last_fetched_at->lt(now()->subHours(24))
$profile->last_fetched_at->lt(now()->subMonths(3))
) {
RemoteAvatarFetch::dispatch($profile);
}