mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-26 00:03:16 +00:00
Update AP helpers, fix last_fetched_at condition
This commit is contained in:
parent
9ef9985133
commit
c32bb55b8a
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue