mirror of
https://github.com/pixelfed/pixelfed.git
synced 2025-01-30 16:30:45 +00:00
Update AP Inbox
This commit is contained in:
parent
18e3bacf49
commit
36b88901f3
1 changed files with 2 additions and 2 deletions
|
@ -87,7 +87,7 @@ class DeleteWorker implements ShouldQueue
|
||||||
->whereRemoteUrl($actor)
|
->whereRemoteUrl($actor)
|
||||||
->first();
|
->first();
|
||||||
if($profile) {
|
if($profile) {
|
||||||
DeleteRemoteProfilePipeline::dispatch($profile)->onQueue('delete');
|
DeleteRemoteProfilePipeline::dispatch($profile)->onQueue('inbox');
|
||||||
}
|
}
|
||||||
return 1;
|
return 1;
|
||||||
} else {
|
} else {
|
||||||
|
@ -105,7 +105,7 @@ class DeleteWorker implements ShouldQueue
|
||||||
$profile = null;
|
$profile = null;
|
||||||
|
|
||||||
if($this->verifySignature($headers, $payload) == true) {
|
if($this->verifySignature($headers, $payload) == true) {
|
||||||
ActivityHandler::dispatch($headers, $profile, $payload)->onQueue('delete');
|
ActivityHandler::dispatch($headers, $profile, $payload)->onQueue('inbox');
|
||||||
return 1;
|
return 1;
|
||||||
} else {
|
} else {
|
||||||
return 1;
|
return 1;
|
||||||
|
|
Loading…
Reference in a new issue