We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent def40e9 commit c449f93Copy full SHA for c449f93
src/Detectors/ProviderName.php
@@ -13,7 +13,12 @@ public function detect(): string
13
$metas = $this->extractor->getMetas();
14
15
return $oembed->str('provider_name')
16
- ?: $metas->str('og:site_name', 'dcterms.publisher')
+ ?: $metas->str(
17
+ 'og:site_name',
18
+ 'dcterms.publisher',
19
+ 'publisher',
20
+ 'article:publisher'
21
+ )
22
?: ucfirst($this->fallback());
23
}
24
0 commit comments