mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-04 23:35:04 +00:00
Revert "[flipagram] Make _search_json_ld non fatal"
This reverts commit d34995a9e3
.
This commit is contained in:
parent
395c74615c
commit
3711fa1eb2
1 changed files with 1 additions and 1 deletions
|
@ -48,7 +48,7 @@ def _real_extract(self, url):
|
||||||
flipagram = video_data['flipagram']
|
flipagram = video_data['flipagram']
|
||||||
video = flipagram['video']
|
video = flipagram['video']
|
||||||
|
|
||||||
json_ld = self._search_json_ld(webpage, video_id, fatal=False)
|
json_ld = self._search_json_ld(webpage, video_id, default=False)
|
||||||
title = json_ld.get('title') or flipagram['captionText']
|
title = json_ld.get('title') or flipagram['captionText']
|
||||||
description = json_ld.get('description') or flipagram.get('captionText')
|
description = json_ld.get('description') or flipagram.get('captionText')
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue