mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-12 23:37:08 -05:00
[bilibili] Make anthology title non-fatal
This commit is contained in:
parent
88f23a18e0
commit
2568d41f70
@ -252,7 +252,7 @@ class BiliBiliIE(InfoExtractor):
|
|||||||
title = self._html_search_regex(
|
title = self._html_search_regex(
|
||||||
(r'<h1[^>]+\btitle=(["\'])(?P<title>(?:(?!\1).)+)\1',
|
(r'<h1[^>]+\btitle=(["\'])(?P<title>(?:(?!\1).)+)\1',
|
||||||
r'(?s)<h1[^>]*>(?P<title>.+?)</h1>'), webpage, 'title',
|
r'(?s)<h1[^>]*>(?P<title>.+?)</h1>'), webpage, 'title',
|
||||||
group='title')
|
group='title', fatal=False)
|
||||||
|
|
||||||
# Get part title for anthologies
|
# Get part title for anthologies
|
||||||
if page_id is not None:
|
if page_id is not None:
|
||||||
|
Loading…
Reference in New Issue
Block a user