mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-12-23 08:14:10 +00:00
Update IncrementPostCount job
This commit is contained in:
parent
6153b620bf
commit
93077625ca
1 changed files with 36 additions and 34 deletions
|
@ -45,10 +45,12 @@ class IncrementPostCount implements ShouldQueue
|
||||||
|
|
||||||
if($profile->updated_at && $profile->updated_at->lt(now()->subDays(30))) {
|
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->status_count = Status::whereProfileId($id)->whereNull(['in_reply_to_id', 'reblog_of_id'])->count();
|
||||||
|
$profile->last_status_at = now();
|
||||||
$profile->save();
|
$profile->save();
|
||||||
AccountService::del($id);
|
AccountService::del($id);
|
||||||
} else {
|
} else {
|
||||||
$profile->status_count = $profile->status_count + 1;
|
$profile->status_count = $profile->status_count + 1;
|
||||||
|
$profile->last_status_at = now();
|
||||||
$profile->save();
|
$profile->save();
|
||||||
AccountService::del($id);
|
AccountService::del($id);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue