浏览代码

[extractor/generic] Make _search_json_ld non fatal

Sergey M․ 9 年之前
父节点
当前提交
958849275f
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      youtube_dl/extractor/generic.py

+ 1 - 1
youtube_dl/extractor/generic.py

@@ -2241,7 +2241,7 @@ 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, fatal=False, 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'],