Skip to content

Commit 2568d41

Browse files
committed
[bilibili] Make anthology title non-fatal
1 parent 88f23a1 commit 2568d41

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

yt_dlp/extractor/bilibili.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -252,7 +252,7 @@ def _real_extract(self, url):
252252
title = self._html_search_regex(
253253
(r'<h1[^>]+\btitle=(["\'])(?P<title>(?:(?!\1).)+)\1',
254254
r'(?s)<h1[^>]*>(?P<title>.+?)</h1>'), webpage, 'title',
255-
group='title')
255+
group='title', fatal=False)
256256

257257
# Get part title for anthologies
258258
if page_id is not None:

0 commit comments

Comments
 (0)