1
0
Fork 0
mirror of https://github.com/ytdl-org/youtube-dl.git synced 2024-05-20 12:09:32 +00:00

[flipagram] Make _search_json_ld non fatal

This commit is contained in:
Sergey M․ 2016-08-07 19:06:55 +07:00
parent 958849275f
commit d34995a9e3
No known key found for this signature in database
GPG key ID: 2C393E0F18A9236D

View file

@ -48,7 +48,7 @@ class FlipagramIE(InfoExtractor):
flipagram = video_data['flipagram']
video = flipagram['video']
json_ld = self._search_json_ld(webpage, video_id, default=False)
json_ld = self._search_json_ld(webpage, video_id, fatal=False)
title = json_ld.get('title') or flipagram['captionText']
description = json_ld.get('description') or flipagram.get('captionText')