Merge pull request #4693 from pixelfed/staging

Update AP helpers, adjust RemoteAvatarFetch ttl from 24h to 3 months
pull/4698/head
daniel 2023-10-10 21:28:02 -06:00 zatwierdzone przez GitHub
commit ffa44c4fad
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4AEE18F83AFDEB23
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -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);
}