Avoid empty type
This commit is contained in:
parent
e3409c72e2
commit
f772e11cfa
1 changed files with 2 additions and 2 deletions
|
@ -600,7 +600,7 @@ class ParseUrl
|
||||||
{
|
{
|
||||||
if (!empty($jsonld['@graph']) && is_array($jsonld['@graph'])) {
|
if (!empty($jsonld['@graph']) && is_array($jsonld['@graph'])) {
|
||||||
foreach ($jsonld['@graph'] as $part) {
|
foreach ($jsonld['@graph'] as $part) {
|
||||||
$siteinfo = self::parseJsonLd($siteinfo, $part);
|
$siteinfo = self::parseParts($siteinfo, $part);
|
||||||
}
|
}
|
||||||
} elseif (!empty($jsonld['@type'])) {
|
} elseif (!empty($jsonld['@type'])) {
|
||||||
$siteinfo = self::parseJsonLd($siteinfo, $jsonld);
|
$siteinfo = self::parseJsonLd($siteinfo, $jsonld);
|
||||||
|
@ -641,7 +641,7 @@ class ParseUrl
|
||||||
|
|
||||||
// Silently ignore some types that aren't processed
|
// Silently ignore some types that aren't processed
|
||||||
if (in_array($type, ['SiteNavigationElement', 'JobPosting', 'CreativeWork', 'MusicAlbum',
|
if (in_array($type, ['SiteNavigationElement', 'JobPosting', 'CreativeWork', 'MusicAlbum',
|
||||||
'WPHeader', 'WPSideBar', 'WPFooter', 'LegalService',
|
'WPHeader', 'WPSideBar', 'WPFooter', 'LegalService', 'MusicRecording',
|
||||||
'ItemList', 'BreadcrumbList', 'Blog', 'Dataset', 'Product'])) {
|
'ItemList', 'BreadcrumbList', 'Blog', 'Dataset', 'Product'])) {
|
||||||
return $siteinfo;
|
return $siteinfo;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue