[Bandcamp] Fix extraction of related playlist items URL (#1047)

Small change in HTML structure
This commit is contained in:
fynngodau 2023-04-02 22:24:29 +02:00 committed by GitHub
parent 1b6fe5edd6
commit 69705138e4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -25,7 +25,7 @@ public class BandcampRelatedPlaylistInfoItemExtractor implements PlaylistInfoIte
@Override
public String getUrl() throws ParsingException {
return relatedAlbum.getElementsByClass("title-and-artist").attr("abs:href");
return relatedAlbum.getElementsByClass("album-link").attr("abs:href");
}
@Override