mirror of
				https://gitlab.com/ytdl-org/youtube-dl.git
				synced 2025-11-03 18:47:06 -05:00 
			
		
		
		
	[bandcamp:album] Fix title extraction (Fixes #4721)
This commit is contained in:
		@@ -161,7 +161,8 @@ class BandcampAlbumIE(InfoExtractor):
 | 
			
		||||
        entries = [
 | 
			
		||||
            self.url_result(compat_urlparse.urljoin(url, t_path), ie=BandcampIE.ie_key())
 | 
			
		||||
            for t_path in tracks_paths]
 | 
			
		||||
        title = self._search_regex(r'album_title : "(.*?)"', webpage, 'title')
 | 
			
		||||
        title = self._search_regex(
 | 
			
		||||
            r'album_title\s*:\s*"(.*?)"', webpage, 'title', fatal=False)
 | 
			
		||||
        return {
 | 
			
		||||
            '_type': 'playlist',
 | 
			
		||||
            'id': playlist_id,
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user