Check for empty baseurl

This commit is contained in:
Michael 2020-08-05 07:51:15 +00:00
parent fd62629285
commit cd99b9706b

View file

@ -2044,9 +2044,13 @@ class Probe
*/ */
private static function updateFromNoScrape(array $data) private static function updateFromNoScrape(array $data)
{ {
if (empty($data['baseurl'])) {
return '';
}
// Check the 'noscrape' endpoint when it is a Friendica server // Check the 'noscrape' endpoint when it is a Friendica server
$gserver = DBA::selectFirst('gserver', ['noscrape'], ["`nurl` = ? AND `noscrape` != ''", $gserver = DBA::selectFirst('gserver', ['noscrape'], ["`nurl` = ? AND `noscrape` != ''",
Strings::normaliseLink($data['baseurl'])]); Strings::normaliseLink($data['baseurl'])]);
if (!DBA::isResult($gserver)) { if (!DBA::isResult($gserver)) {
return ''; return '';
} }