mirror of
https://codeberg.org/polarisfm/youtube-dl
synced 2024-11-25 09:54:32 +01:00
Captured album element with album
This commit is contained in:
parent
6f12f2a34b
commit
65302cebf1
@ -442,11 +442,11 @@ class BandcampUserIE(InfoExtractor):
|
||||
|
||||
webpage = self._download_webpage(url, uploader)
|
||||
|
||||
album_elements = re.findall(r'<a href="/album/(.[^"]+)">', webpage)
|
||||
album_elements = re.findall(r'<a href="/(album/.[^"]+)">', webpage)
|
||||
|
||||
entries = [
|
||||
self.url_result(
|
||||
compat_urlparse.urljoin(url, 'album/%s' % album_id),
|
||||
compat_urlparse.urljoin(url, album_id),
|
||||
ie=BandcampAlbumIE.ie_key(),
|
||||
video_id='{}-{}'.format(uploader, album_id),
|
||||
video_title=album_id,
|
||||
|
Loading…
Reference in New Issue
Block a user