Browse Source

Revert "[flipagram] Make _search_json_ld non fatal"

This reverts commit d34995a9e3.
totalwebcasting
Sergey M․ 8 years ago
parent
commit
3711fa1eb2
No known key found for this signature in database GPG Key ID: 2C393E0F18A9236D
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      youtube_dl/extractor/flipagram.py

+ 1
- 1
youtube_dl/extractor/flipagram.py 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, fatal=False)
json_ld = self._search_json_ld(webpage, video_id, default=False)
title = json_ld.get('title') or flipagram['captionText']
description = json_ld.get('description') or flipagram.get('captionText')


Loading…
Cancel
Save