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

pull/4693/head
Daniel Supernault 2023-10-10 20:55:20 -06:00
rodzic 01bac51104
commit 36b23fe34e
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 23740873EE6F76A1
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);
}