Merge pull request #984 from pixelfed/frontend-ui-refactor

Update AP deliver job
pull/1005/head
daniel 7 years ago committed by GitHub
commit 1a185c28d0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -76,10 +76,10 @@ class StatusActivityPubDeliver implements ShouldQueue
'timeout' => config('pixelfed.ap_delivery_timeout')
]);
$requests = function() use ($client, $activity, $profile) {
$requests = function() use ($client, $activity, $profile, $payload) {
foreach($audience as $url) {
$headers = HttpSignature::sign($profile, $url, $activity);
yield function() use ($client, $url, $activity, $headers) {
yield function() use ($client, $url, $activity, $headers, $payload) {
return $client->requestAsync('POST', $url, [
'curl' => [
CURLOPT_HTTPHEADER => $headers,

Loading…
Cancel
Save