diff options
author | pukkandan <pukkandan.ytdlp@gmail.com> | 2022-01-24 21:01:17 +0530 |
---|---|---|
committer | pukkandan <pukkandan.ytdlp@gmail.com> | 2022-01-24 21:04:38 +0530 |
commit | fc08bdd6ab2abb92d7814d035b34c15cb7006597 (patch) | |
tree | 33995d727ece9655bd189ece183c11d6129214ac /yt_dlp/extractor/common.py | |
parent | 2568d41f70d656bb5429463d49bce88a50871b1f (diff) | |
download | hypervideo-pre-fc08bdd6ab2abb92d7814d035b34c15cb7006597.tar.lz hypervideo-pre-fc08bdd6ab2abb92d7814d035b34c15cb7006597.tar.xz hypervideo-pre-fc08bdd6ab2abb92d7814d035b34c15cb7006597.zip |
[extractor] Allow non-fatal `title` extraction
Diffstat (limited to 'yt_dlp/extractor/common.py')
-rw-r--r-- | yt_dlp/extractor/common.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/yt_dlp/extractor/common.py b/yt_dlp/extractor/common.py index bd9362827..a2f160a82 100644 --- a/yt_dlp/extractor/common.py +++ b/yt_dlp/extractor/common.py @@ -1291,7 +1291,7 @@ class InfoExtractor(object): return self._og_search_property('description', html, fatal=False, **kargs) def _og_search_title(self, html, **kargs): - return self._og_search_property('title', html, **kargs) + return self._og_search_property('title', html, fatal=False, **kargs) def _og_search_video_url(self, html, name='video url', secure=True, **kargs): regexes = self._og_regexes('video') + self._og_regexes('video:url') |