Update RemoteStatusDelete pipeline

pull/4575/head
Daniel Supernault 2023-08-01 05:07:58 -06:00
rodzic 45be6e10b8
commit 71e92261f4
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 0DEF1C662C9033F7
1 zmienionych plików z 6 dodań i 2 usunięć

Wyświetl plik

@ -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);