trim angle brackets, fix getScheme() check, it doesn’t return null, but an empty string
This commit is contained in:
parent
f72f748c9c
commit
220f70d54b
1 changed files with 2 additions and 2 deletions
|
@ -75,7 +75,7 @@ class SendWebMentions implements ShouldQueue
|
||||||
$links = \GuzzleHttp\Psr7\parse_header($response->getHeader('Link'));
|
$links = \GuzzleHttp\Psr7\parse_header($response->getHeader('Link'));
|
||||||
foreach ($links as $link) {
|
foreach ($links as $link) {
|
||||||
if (mb_stristr($link['rel'], 'webmention')) {
|
if (mb_stristr($link['rel'], 'webmention')) {
|
||||||
return $this->resolveUri($link[0], $url);
|
return $this->resolveUri(trim($link[0], '<>'), $url);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -125,7 +125,7 @@ class SendWebMentions implements ShouldQueue
|
||||||
public function resolveUri(string $url, string $base): string
|
public function resolveUri(string $url, string $base): string
|
||||||
{
|
{
|
||||||
$endpoint = \GuzzleHttp\Psr7\uri_for($url);
|
$endpoint = \GuzzleHttp\Psr7\uri_for($url);
|
||||||
if ($endpoint->getScheme() !== null) {
|
if ($endpoint->getScheme() != '') {
|
||||||
return (string) $endpoint;
|
return (string) $endpoint;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue