Update AP helpers, fix last_fetched_at condition

pull/3551/head
Daniel Supernault 2022-06-20 21:48:37 -06:00
rodzic 9ef9985133
commit c32bb55b8a
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 0DEF1C662C9033F7
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -695,7 +695,7 @@ class Helpers {
}
if($profile = Profile::whereRemoteUrl($url)->first()) {
if($profile->last_fetched_at->lt(now()->subHours(24))) {
if($profile->last_fetched_at && $profile->last_fetched_at->lt(now()->subHours(24))) {
return self::profileUpdateOrCreate($url);
}
return $profile;