1
0
Fork 0

Update IncrementPostCount job

This commit is contained in:
Daniel Supernault 2023-03-03 04:54:28 -07:00
parent 6153b620bf
commit 93077625ca
No known key found for this signature in database
GPG Key ID: 0DEF1C662C9033F7
1 changed files with 36 additions and 34 deletions

View File

@ -45,10 +45,12 @@ class IncrementPostCount implements ShouldQueue
if($profile->updated_at && $profile->updated_at->lt(now()->subDays(30))) {
$profile->status_count = Status::whereProfileId($id)->whereNull(['in_reply_to_id', 'reblog_of_id'])->count();
$profile->last_status_at = now();
$profile->save();
AccountService::del($id);
} else {
$profile->status_count = $profile->status_count + 1;
$profile->last_status_at = now();
$profile->save();
AccountService::del($id);
}