[generic] Detect more json_ld

Closes #1475
This commit is contained in:
pukkandan 2021-10-30 02:03:53 +05:30
parent 5e7bbac305
commit fa0b816e37
No known key found for this signature in database
GPG Key ID: 0F00D95A001F4698
1 changed files with 1 additions and 2 deletions

View File

@ -3583,8 +3583,7 @@ class GenericIE(InfoExtractor):
return info_dict
# Looking for http://schema.org/VideoObject
json_ld = self._search_json_ld(
webpage, video_id, default={}, expected_type='VideoObject')
json_ld = self._search_json_ld(webpage, video_id, default={})
if json_ld.get('url'):
return merge_dicts(json_ld, info_dict)