mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-04 23:35:04 +00:00
Revert "[extractor/generic] Make _search_json_ld non fatal"
This reverts commit 958849275f
.
This commit is contained in:
parent
3dc240e8c6
commit
395c74615c
1 changed files with 1 additions and 1 deletions
|
@ -2241,7 +2241,7 @@ def _playlist_from_matches(matches, getter=None, ie=None):
|
||||||
|
|
||||||
# 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, fatal=False, expected_type='VideoObject')
|
webpage, video_id, default=None, expected_type='VideoObject')
|
||||||
if json_ld and json_ld.get('url'):
|
if json_ld and json_ld.get('url'):
|
||||||
info_dict.update({
|
info_dict.update({
|
||||||
'title': video_title or info_dict['title'],
|
'title': video_title or info_dict['title'],
|
||||||
|
|
Loading…
Reference in a new issue