Update ActivityPubFetchService, fix Friendica bug

This commit is contained in:
Daniel Supernault 2024-05-17 21:45:42 -06:00
parent 1068b09146
commit e4edc6f192
No known key found for this signature in database
GPG Key ID: 23740873EE6F76A1
1 changed files with 7 additions and 1 deletions

View File

@ -28,7 +28,13 @@ class ActivityPubFetchService
$headers['User-Agent'] = 'PixelFedBot/1.0.0 (Pixelfed/'.config('pixelfed.version').'; +'.config('app.url').')';
try {
$res = Http::withOptions(['allow_redirects' => false])
$res = Http::withoutVerifying()
->withOptions([
'allow_redirects' => [
'max' => 2,
'protocols' => ['https'],
]
])
->withHeaders($headers)
->timeout(30)
->connectTimeout(5)