sforkowany z mirror/friendica
Add additional check for $links in Probe
see https://github.com/friendica/friendica/issues/6917#issuecomment-5016615302022.09-rc
rodzic
41edbfd24a
commit
a85aa24d56
|
@ -198,7 +198,7 @@ class Probe
|
|||
|
||||
$links = self::lrdd($webbie);
|
||||
Logger::log('webfingerDfrn: '.$webbie.':'.print_r($links, true), Logger::DATA);
|
||||
if (count($links)) {
|
||||
if (!empty($links) && is_array($links)) {
|
||||
foreach ($links as $link) {
|
||||
if ($link['@attributes']['rel'] === NAMESPACE_DFRN) {
|
||||
$profile_link = $link['@attributes']['href'];
|
||||
|
|
Ładowanie…
Reference in New Issue