missing return value check
This commit is contained in:
parent
f4b34d67c5
commit
cd561657c2
|
@ -108,6 +108,10 @@ class Webfinger
|
||||||
|
|
||||||
$content = $this->fetchURL($url);
|
$content = $this->fetchURL($url);
|
||||||
|
|
||||||
|
if (!$content) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
return XRD::parse($content);
|
return XRD::parse($content);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user