1
0
Fork 0

Update RemoteStatusDelete pipeline

This commit is contained in:
Daniel Supernault 2023-08-01 05:07:58 -06:00
parent 45be6e10b8
commit 71e92261f4
No known key found for this signature in database
GPG Key ID: 0DEF1C662C9033F7
1 changed files with 6 additions and 2 deletions

View File

@ -54,7 +54,6 @@ class RemoteStatusDelete implements ShouldQueue
public $timeout = 90;
public $tries = 2;
public $maxExceptions = 1;
public $deleteWhenMissingModels = true;
/**
* Create a new job instance.
@ -74,6 +73,11 @@ class RemoteStatusDelete implements ShouldQueue
public function handle()
{
$status = $this->status;
if($status->deleted_at) {
$status->forceDelete();
return;
}
$profile = $this->status->profile;
StatusService::del($status->id, true);
@ -127,7 +131,7 @@ class RemoteStatusDelete implements ShouldQueue
StatusView::whereStatusId($status->id)->delete();
Status::whereInReplyToId($status->id)->update(['in_reply_to_id' => null]);
$status->delete();
$status->forceDelete();
StatusService::del($status->id, true);
AccountService::del($status->profile_id);