From c59ce7d6a6a5be85b240e177dd60573a0fab1318 Mon Sep 17 00:00:00 2001 From: grqx_wsl <173253225+grqx@users.noreply.github.com> Date: Wed, 6 Nov 2024 01:04:36 +1300 Subject: [PATCH] [ie/boomplaypodcast] use the base extractor's method to extract title --- yt_dlp/extractor/boomplay.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/yt_dlp/extractor/boomplay.py b/yt_dlp/extractor/boomplay.py index d25f376798..71e76eafa5 100644 --- a/yt_dlp/extractor/boomplay.py +++ b/yt_dlp/extractor/boomplay.py @@ -155,7 +155,7 @@ def _extract_title_from_webpage(self, webpage): @staticmethod def _fix_title(title): """ - fix various types of titles(og:title, twitter:title, title tag in html head): + fix various types of titles(og:title, twitter:title, title tag in html head) """ if not title: return {} @@ -364,7 +364,6 @@ def _real_extract(self, url): })) return self.playlist_result( song_list, playlist_id, - playlist_title=self._og_search_title(webpage, fatal=True).rsplit('|', 2)[0].strip(), **self._extract_page_metadata(webpage, playlist_id))