Merge pull request #9964 from annando/fix-link-preview

Fix link preview with videos
This commit is contained in:
Hypolite Petovan 2021-02-27 17:52:02 -05:00 committed by GitHub
commit a5dde7a69b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

View File

@ -96,7 +96,8 @@ class ParseUrl extends BaseModule
if ($format == 'json') {
$siteinfo = Util\ParseUrl::getSiteinfoCached($url);
if (in_array($siteinfo['type'], ['image', 'video', 'audio'])) {
if (empty($siteinfo['title']) && empty($siteinfo['text']) && empty($siteinfo['image'])
&& in_array($siteinfo['type'], ['image', 'video', 'audio'])) {
switch ($siteinfo['type']) {
case 'video':
$content_type = 'video';