1
0
Fork 0

Update RemoteStatusDelete pipeline

This commit is contained in:
Daniel Supernault 2023-08-06 15:31:37 -06:00
parent 4f19a58b2c
commit fab8f25e9b
No known key found for this signature in database
GPG Key ID: 0DEF1C662C9033F7
1 changed files with 1 additions and 2 deletions

View File

@ -75,7 +75,6 @@ class RemoteStatusDelete implements ShouldQueue
$status = $this->status;
if($status->deleted_at) {
$status->forceDelete();
return;
}
$profile = $this->status->profile;
@ -131,7 +130,7 @@ class RemoteStatusDelete implements ShouldQueue
StatusView::whereStatusId($status->id)->delete();
Status::whereInReplyToId($status->id)->update(['in_reply_to_id' => null]);
$status->forceDelete();
$status->delete();
StatusService::del($status->id, true);
AccountService::del($status->profile_id);