Update NodeinfoService, disable redirects

pull/4902/head
Daniel Supernault 1 year ago
parent 80e0ada946
commit 240e6bbe4f
No known key found for this signature in database
GPG Key ID: 23740873EE6F76A1

@ -22,7 +22,10 @@ class NodeinfoService
$wk = $url . '/.well-known/nodeinfo';
try {
$res = Http::withHeaders($headers)
$res = Http::withOptions([
'allow_redirects' => false,
])
->withHeaders($headers)
->timeout(5)
->get($wk);
} catch (RequestException $e) {
@ -61,7 +64,10 @@ class NodeinfoService
}
try {
$res = Http::withHeaders($headers)
$res = Http::withOptions([
'allow_redirects' => false,
])
->withHeaders($headers)
->timeout(5)
->get($href);
} catch (RequestException $e) {

Loading…
Cancel
Save