Fix label download

This commit is contained in:
7x11x13
2023-11-30 18:09:42 -05:00
parent ac2bb582fa
commit 894ef8fa93
+1 -1
View File
@@ -265,7 +265,7 @@ class BCFreeDownloader:
r.raise_for_status()
soup = BeautifulSoup(r.text)
for album_title in soup.find_all("p", class_="title"):
album_link = album_title.parent.attrs["href"]
album_link = urljoin(url, album_title.parent.attrs["href"])
logger.info(f"Downloading {album_link}")
try:
self.download_album(album_link, force)