Skip to content

Commit

Permalink
Bugfix for 1713c88 (#9298)
Browse files Browse the repository at this point in the history
Authored by: TobiX
  • Loading branch information
TobiX committed Feb 25, 2024
1 parent 069b2ae commit f1570ab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion yt_dlp/extractor/bilibili.py
Expand Up @@ -1996,7 +1996,7 @@ def _extract_video_metadata(self, url, video_id, season_id):
'title': get_element_by_class(
'bstar-meta__title', webpage) or self._html_search_meta('og:title', webpage),
'description': get_element_by_class(
'bstar-meta__desc', webpage) or self._html_search_meta('og:description'),
'bstar-meta__desc', webpage) or self._html_search_meta('og:description', webpage),
}, self._search_json_ld(webpage, video_id, default={}))

def _get_comments_reply(self, root_id, next_id=0, display_id=None):
Expand Down

0 comments on commit f1570ab

Please sign in to comment.