mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-22 22:41:27 +00:00
Update FederationController
This commit is contained in:
parent
f0425ca011
commit
25edbcdec2
1 changed files with 1 additions and 1 deletions
|
@ -239,7 +239,7 @@ XML;
|
||||||
}
|
}
|
||||||
$signatureData = HttpSignature::parseSignatureHeader($signature);
|
$signatureData = HttpSignature::parseSignatureHeader($signature);
|
||||||
$keyId = Helpers::validateUrl($signatureData['keyId']);
|
$keyId = Helpers::validateUrl($signatureData['keyId']);
|
||||||
$actor = Profile::whereKeyId($keyId)->first();
|
$actor = Profile::whereKeyId($keyId)->whereNotNull('remote_url')->firstOrFail();
|
||||||
$res = Zttp::timeout(5)->withHeaders([
|
$res = Zttp::timeout(5)->withHeaders([
|
||||||
'Accept' => 'application/ld+json; profile="https://www.w3.org/ns/activitystreams"',
|
'Accept' => 'application/ld+json; profile="https://www.w3.org/ns/activitystreams"',
|
||||||
'User-Agent' => 'PixelFedBot v0.1 - https://pixelfed.org',
|
'User-Agent' => 'PixelFedBot v0.1 - https://pixelfed.org',
|
||||||
|
|
Loading…
Reference in a new issue