mirror of
https://github.com/ytdl-org/youtube-dl.git
synced 2024-11-22 18:22:21 +00:00
Using fatal=false for _og_search_description
This commit is contained in:
parent
ab98a3c043
commit
2b7e123f9d
1 changed files with 1 additions and 1 deletions
|
@ -377,7 +377,7 @@ class ProSiebenSat1IE(ProSiebenSat1BaseIE):
|
||||||
description = self._html_search_regex(
|
description = self._html_search_regex(
|
||||||
self._DESCRIPTION_REGEXES, webpage, 'description', default=None)
|
self._DESCRIPTION_REGEXES, webpage, 'description', default=None)
|
||||||
if description is None:
|
if description is None:
|
||||||
description = self._og_search_description(webpage, default=None)
|
description = self._og_search_description(webpage, fatal=False)
|
||||||
thumbnail = self._og_search_thumbnail(webpage)
|
thumbnail = self._og_search_thumbnail(webpage)
|
||||||
upload_date = unified_strdate(self._html_search_regex(
|
upload_date = unified_strdate(self._html_search_regex(
|
||||||
self._UPLOAD_DATE_REGEXES, webpage, 'upload date', default=None))
|
self._UPLOAD_DATE_REGEXES, webpage, 'upload date', default=None))
|
||||||
|
|
Loading…
Reference in a new issue