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

Update AP deliver job
This commit is contained in:
daniel 2019-03-07 23:00:33 -07:00 committed by GitHub
commit 37d8be4db7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -79,7 +79,7 @@ class StatusActivityPubDeliver implements ShouldQueue
$requests = function() use ($client, $activity, $profile) { $requests = function() use ($client, $activity, $profile) {
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) { yield function() use ($client, $url, $activity, $headers) {
return $client->requestAsync('POST', $url, [ return $client->requestAsync('POST', $url, [
'curl' => [ 'curl' => [
CURLOPT_HTTPHEADER => $headers, CURLOPT_HTTPHEADER => $headers,