mirror of
https://github.com/pixelfed/pixelfed.git
synced 2025-01-10 14:10:46 +00:00
Merge pull request #985 from pixelfed/frontend-ui-refactor
Update AP deliver job
This commit is contained in:
commit
18367a9aec
1 changed files with 3 additions and 3 deletions
|
@ -76,11 +76,11 @@ class StatusActivityPubDeliver implements ShouldQueue
|
||||||
'timeout' => config('pixelfed.ap_delivery_timeout')
|
'timeout' => config('pixelfed.ap_delivery_timeout')
|
||||||
]);
|
]);
|
||||||
|
|
||||||
$requests = function() use ($client, $activity, $profile, $payload) {
|
$requests = function() use ($audience, $client, $activity, $profile, $payload) {
|
||||||
foreach($audience as $url) {
|
foreach($audience as $url) {
|
||||||
$headers = HttpSignature::sign($profile, $url, $activity);
|
$headers = HttpSignature::sign($profile, $url, $activity);
|
||||||
yield function() use ($client, $url, $activity, $headers, $payload) {
|
yield function() use ($client, $url, $headers, $payload) {
|
||||||
return $client->requestAsync('POST', $url, [
|
return $client->postAsync($url, [
|
||||||
'curl' => [
|
'curl' => [
|
||||||
CURLOPT_HTTPHEADER => $headers,
|
CURLOPT_HTTPHEADER => $headers,
|
||||||
CURLOPT_POSTFIELDS => $payload,
|
CURLOPT_POSTFIELDS => $payload,
|
||||||
|
|
Loading…
Reference in a new issue