mirror of
https://github.com/friendica/friendica
synced 2024-11-09 17:02:54 +00:00
Merge pull request #12796 from annando/fatal
Fix fatal error because of an invalid url
This commit is contained in:
commit
40e0ea239a
1 changed files with 3 additions and 2 deletions
|
@ -1060,10 +1060,11 @@ class GServer
|
|||
Logger::info('Invalid nodeinfo format', ['url' => $url]);
|
||||
continue;
|
||||
}
|
||||
|
||||
if ($link['rel'] == 'http://nodeinfo.diaspora.software/ns/schema/1.0') {
|
||||
$nodeinfo1_url = $link['href'];
|
||||
$nodeinfo1_url = Network::addBasePath($link['href'], $httpResult->getUrl());
|
||||
} elseif ($link['rel'] == 'http://nodeinfo.diaspora.software/ns/schema/2.0') {
|
||||
$nodeinfo2_url = $link['href'];
|
||||
$nodeinfo2_url = Network::addBasePath($link['href'], $httpResult->getUrl());
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue