[ie/boomplaypodcast] use the base extractor's method to extract title

This commit is contained in:
grqx_wsl 2024-11-06 01:04:36 +13:00
parent bd857a06a0
commit c59ce7d6a6

View File

@ -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))