mirror of https://github.com/yt-dlp/yt-dlp.git
[extractor/generic] Add proper default to _search_json_ld call
This commit is contained in:
parent
e8ed7354e6
commit
082395d0a0
|
@ -2241,8 +2241,8 @@ class GenericIE(InfoExtractor):
|
||||||
|
|
||||||
# Looking for http://schema.org/VideoObject
|
# Looking for http://schema.org/VideoObject
|
||||||
json_ld = self._search_json_ld(
|
json_ld = self._search_json_ld(
|
||||||
webpage, video_id, default=None, expected_type='VideoObject')
|
webpage, video_id, default={}, expected_type='VideoObject')
|
||||||
if json_ld and json_ld.get('url'):
|
if json_ld.get('url'):
|
||||||
info_dict.update({
|
info_dict.update({
|
||||||
'title': video_title or info_dict['title'],
|
'title': video_title or info_dict['title'],
|
||||||
'description': video_description,
|
'description': video_description,
|
||||||
|
|
Loading…
Reference in New Issue