mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2025-12-13 11:45:29 +00:00
[ie/boomplaypodcast] use the base extractor's method to extract title
This commit is contained in:
@@ -155,7 +155,7 @@ class BoomplayBaseIE(InfoExtractor):
|
|||||||
@staticmethod
|
@staticmethod
|
||||||
def _fix_title(title):
|
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:
|
if not title:
|
||||||
return {}
|
return {}
|
||||||
@@ -364,7 +364,6 @@ class BoomplayPodcastIE(BoomplayBaseIE):
|
|||||||
}))
|
}))
|
||||||
return self.playlist_result(
|
return self.playlist_result(
|
||||||
song_list, playlist_id,
|
song_list, playlist_id,
|
||||||
playlist_title=self._og_search_title(webpage, fatal=True).rsplit('|', 2)[0].strip(),
|
|
||||||
**self._extract_page_metadata(webpage, playlist_id))
|
**self._extract_page_metadata(webpage, playlist_id))
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user